|
41811
|
884
|
41
|
2026-04-17T06:26:46.642391+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407206642_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1093099264527127851
|
-4531073026057627860
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
41809
|
|
41807
|
884
|
39
|
2026-04-17T06:26:44.300690+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407204300_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1093099264527127851
|
-4531073026057627860
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
41806
|
|
41792
|
885
|
39
|
2026-04-17T06:26:17.329135+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407177329_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.03046875,"top":0.017361112,"width":0.0453125,"height":0.022222223},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.07578125,"top":0.017361112,"width":0.14960937,"height":0.022222223},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","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.78515625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"bounds":{"left":0.803125,"top":0.017361112,"width":0.09765625,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9007813,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9140625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9273437,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.96015626,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9734375,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9867188,"top":0.017361112,"width":0.013281226,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"bounds":{"left":0.32460937,"top":0.23819445,"width":0.009375,"height":0.013194445},"role_description":"text"}]...
|
-6709765612706175048
|
-7681944650974499898
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
PhpStormProject vFileFV faVsco.js vEditViewNavigateCodeLaravelRefactor#11894 on JY-18909-automated-reports-ask-iminny kToolsWindowHelphal1= AutomatedRenortsCommandTest100%27Fri 17 Apr 9:26:16A HS_local jiminny@localSF [jiminny@localhost]e zono_dev yiminny@loceV A PRODc consoe rrobiA console_1 [PROD]A DI [PROD]> 4QA> A QAI› QAI PRODV & STAGNGA console [STAGING]¿ consoe AGINGI4 uranus [STAGING]> M ExtensionsM Scratches= phostorm shortcuts.txt= scratch.txtC° scratch_1.jsonC* scratch_2.jsonP scratch_3.jsonE° scratch_4.txtphỹ scratch_5.phppig scratch_6.phpSUAARAtAR 7IAAn© AutomatedReportsService.phpTokenBuilder.phpc leamsetuocontroller.ono© AutomatedReportsCommand.php© AutomatedReportsCommandTest.phpC AutomatedReportsRepository.php© SendReportJob.php© ReportController.phppnp apl.onoFilesystem.php© AskJiminnyReportsController.php© AutomatedReportsSendCommand.php© Team.php= custom.log= laravel.logA SF [jiminny@localhost]C* scratch_1.jsonV connect.vueV Onboard.vueA HS_local [jiminny@localhost]Al console [EU]#concole DPObl#concole CTAGNG"response": f"request_id": "3ca694c0-d6a5-4937-8d60-8d69FObca04f™,"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3" ,"podcast_ssml_url":"S3:VJ1minny.cllent-dataV5f0f4810-7e77-4086-8f69-93429ae4d/0bV/reportsV3ca69400-d6a5-4957-8d60-8d69f0bca04f_podcast.ssml"5selvices+,o, c|v D DatabaseV AEUs consolev A jiminny@localhost4 SFA HS_localV L PROD4 console 1 s 488 msY d SlAGINGA consoley DockerCrealenelaAcuviyevent.onp338339340e) Track?rovidernstalled-vent.one© CreateActivityLoggedEvent.php© UserPilotActivityListener.php© ActivityLogged.php© AutomatedReportsCallbackService.php© RequestGenerateAskJiminnyReportJob.phpRequestGeneratekeportJob.ong© AutomatedReportResult.php1.08.25 Nikolov11.09.25lLUS.LO INIKOlO014c) AutomatedRenort.onnclass AutomatedReportResult extends Mor inpublic function getPdfUrl(): ?stringreturn Sresponselpdt urc' ?? nuuli11.09.25 Nikolov37511.09.25 Nikolov"1d": 850,"media_type": "pdf","resoonse". nucu3 usagespublic function getPodcastAudioUrL(): ?string34548X1X1A Y 346347348349—350351352353"id": 831,"media_type": "podcast","response": null11.09.25 Nikolov37711.09.25 Nikolov11.09.25 Nikolov11.09.25 Nikolov11.09.25 Nikolov11.09.25 Nikolov1.08.25 Nikolov 383"id": 915,"media_type": "pdf","response". nucu$response = $this->getResponse);return $response['podcast_audio_url'] ?? null;=356"id": 916,"media_type": "podcast","response": null• :# Outputin Result 1358 rowsvDid YCSVI media_type Ydete Pououer1250 pdf1251 podcast1319 pdf1320 podcast45a 0011439 podcast1474 pdf1475 podcast1548 pdf1549 podcast1597 pdf1598 podcast1659 pdf1660 podcast1809 pdflold poocast1872 pdf1873 podcastresponse T("request_id":"249776ec-1163-486a-a288-f3a99b1b1a00", "status": "completed"f'timestamp": "2026-02-16T01:05:49.814997+00:00", "s3_ur7""s3:\/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b:{"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00", "status": "completed", "timestamp": "2026-02-16T01:05:49.814997+00:00", "s3_url": "s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b:{"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754", "status": "completed" "timestamp" :"2026-02-23T01:14:56.719622+00:00", "s3_ur": "s3: \/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4:{"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754", "status": "completed", "timestamp": "2026-02-23T01:14:56.719622+00:00", "s3_url": "s3: \/V/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4:s"reqlesto":"7047001a-ca15-40"s3:\/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-Ca13-4d6c-8928-ed6a3307;{"request_id":"7c99607a-ca13-4d6"s3:\/Vjiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a3307;{"request_id":"1c696c7b-88ef-430TEAAEEMNNaleNataWAtEACAAAlI{"request_id":"1c696c7b-88ef-430"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602-{"request_id":"26ab917c-6907-416"s3:\/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a491{"request_id":"26ab917c-6907-416"os"niminnv cilnent-data/s+0r4210-07-4986-8569-95429ae4d70hnenonts2oah9176-690-4166-2066-679652491{"request_id":"b096971f-2533-429"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/b096971f-2533-425e-ac37-f0b4798b!{"request_id":"b096971f-2533-429"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/b096971f-2533-425e-ac37-f0b4798b!{"request_id":"0ca73e35-7a57-468"s3:\/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0ca73e35-7a57-4689-abf6-46ef280ci{"request_id":"Oca73e35-7a57-468"S5:VVJ1minny.cllent-data\/5f0f4810-7e77-4086-8f69-93429ae4d/0b\/reports\/0ca/3e35-7a57-4689-abf6-46ef280c{"request_id":"0f650641-7319-4ef8-b6a"S3:Timinny.client-data/5f0f4810-7e77-4086-8f69-93429ae4d70b reports /0f650641-7319-4ef8-b6aa-95ce56ceS"request 10":01050041-7514-42"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0f650641-7319-4ef8-b6aa-95ce56ce:{"request_id":"822fa41b-afd3-43a"s3:\/N/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/822fa41b-afd3-43a9-a248-86b0e36f;{"request_id": "822fa41b-afd3-43a9-a248-86b0e36f313104-13T01:11:48.648399+00:00",ACKAAEMIaeN GATATTZAIFONEAXAEКCAAMMINWNANNAWAVEHAAI-ATKENAEAIA843Helper Code will help IDE to understand your Laravel app code. // Generate // Don't Show Anymore (26 minutes ago)W Windsurf Teams 694:127 UTF-82 spacesNo Json schema...
|
41790
|
|
41791
|
884
|
32
|
2026-04-17T06:26:17.329141+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407177329_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"role_description":"text"}]...
|
-6709765612706175048
|
-7681944650974499898
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
PhpStormFileEditViewNavigateCodeLaravelRefactorRunToolsGitWindowHelpEU (ssh)DOCKERDEV (-zsh)О 882APP (-zsh)883-zshXI11 DOCKER (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas/jiminny/infrastructure/dev/docker or its parentsPoetry could not find a pyproject.toml/docker or its parentsin /Users/lukas/jiminny/infrastructure/dev(all* Review screenpipe U...100% 1478Fri 17 Apr 9:26:17181*4-zsh®О885PROD (ssh)Run 'do-release-upgrade' to upgrade to it.• 26-zshPRODlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/infrastructure/dev/docker (develop)$Lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/jiminny/infrastructure/dev/docker (develop)$ 0*** System restart required ***Last login: Thu Apr 16 06:55:09 2026 from 212.39.71.189lukas@jiminny-prod-bastion:~$X L3 EU (ssh)New release '24.04.4 LTS' available.Run'do-release-upgrade'to upgrade to it.U*** System restart required ***login: Thu Apr 16 06:55:03 2026 from 212.39.71.189lukas@jiminny-eu-bastion:~$ |T4 STAGE (-zsh)Last login: Thu Apr 16 15:43:43 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsSTAGEPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny$T5 QA (-zsh)Last login: Thu Apr 16 15:43:43 on consolePoetry could not find a pyproject.toml file in /Users/lukas or its parentsPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentsXT6 FE (-zsh)Last login: Thu Apr 16 15:48:07 on ttys004Poetry could not find a pyproject.toml file in /Users/lukas or its parents RONTENDPoetry could not find a pyproject.toml file in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ IX T7 EXT (-zsh)Poetry could not find a pyproject.toml file in /Users/lukas or its parentsEXTENSIONPoetry could not find a pyproject.tomlfile in /Users/lukas or its parentslukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ I|...
|
NULL
|
|
41790
|
885
|
38
|
2026-04-17T06:26:10.138549+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407170138_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.03046875,"top":0.017361112,"width":0.0453125,"height":0.022222223},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.07578125,"top":0.017361112,"width":0.14960937,"height":0.022222223},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","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.78515625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"bounds":{"left":0.803125,"top":0.017361112,"width":0.09765625,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9007813,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9140625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9273437,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.96015626,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9734375,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9867188,"top":0.017361112,"width":0.013281226,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"bounds":{"left":0.32460937,"top":0.23819445,"width":0.009375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.33632812,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.34726563,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.3578125,"top":0.23680556,"width":0.00859375,"height":0.015972223},"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.36640626,"top":0.23680556,"width":0.008203125,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.0140625,"top":0.041666668,"width":0.028515626,"height":0.021527778},"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.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1093099264527127851
|
-4531073026057627860
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
NULL
|
|
41778
|
885
|
32
|
2026-04-17T06:25:37.174586+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407137174_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.03046875,"top":0.017361112,"width":0.0453125,"height":0.022222223},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.07578125,"top":0.017361112,"width":0.14960937,"height":0.022222223},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","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.78515625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"bounds":{"left":0.803125,"top":0.017361112,"width":0.09765625,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9007813,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9140625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9273437,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.96015626,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9734375,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9867188,"top":0.017361112,"width":0.013281226,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"bounds":{"left":0.32460937,"top":0.23819445,"width":0.009375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.33632812,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.34726563,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.3578125,"top":0.23680556,"width":0.00859375,"height":0.015972223},"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.36640626,"top":0.23680556,"width":0.008203125,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.0140625,"top":0.041666668,"width":0.028515626,"height":0.021527778},"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.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1093099264527127851
|
-4531073026057627860
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
NULL
|
|
41777
|
884
|
25
|
2026-04-17T06:25:37.174570+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407137174_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\n \"status\":\"completed\",\n \"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\n \"report_type\":\"coaching_profiles\",\n \"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\n \"status\":\"completed\",\n \"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\n \"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\n \"report_type\":\"coaching_profiles\",\n \"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\n \"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\n \"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-1093099264527127851
|
-4531073026057627860
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c",
"status":"completed",
"timestamp":"2025-09-29T01:09:25.039253+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e",
"status":"completed",
"timestamp":"2025-10-06T01:05:39.117068+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee",
"status":"completed",
"timestamp":"2025-10-13T01:08:35.779362+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635",
"status":"completed",
"timestamp":"2025-10-20T01:07:43.633450+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2",
"status":"completed",
"timestamp":"2025-10-27T01:02:34.789377+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010",
"status":"completed",
"timestamp":"2025-11-03T01:03:31.381285+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30",
"status":"completed",
"timestamp":"2025-11-10T01:05:31.021881+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa",
"status":"completed",
"timestamp":"2025-11-17T01:05:21.492550+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401",
"status":"completed",
"timestamp":"2025-11-24T01:06:05.698838+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85",
"status":"completed",
"timestamp":"2025-12-01T01:11:00.769937+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565",
"status":"completed",
"timestamp":"2025-12-08T01:06:28.080704+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44",
"status":"completed",
"timestamp":"2025-12-15T01:02:21.300804+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f",
"status":"completed",
"timestamp":"2025-12-22T01:06:16.547481+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d",
"status":"completed",
"timestamp":"2026-01-12T01:02:07.988029+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19",
"status":"completed",
"timestamp":"2026-01-19T01:02:53.956691+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f",
"status":"completed",
"timestamp":"2026-01-26T01:02:56.634667+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2",
"status":"completed",
"timestamp":"2026-02-02T01:07:57.335690+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde",
"status":"completed",
"timestamp":"2026-02-09T01:14:26.525625+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00",
"status":"completed",
"timestamp":"2026-02-16T01:05:49.814997+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754",
"status":"completed",
"timestamp":"2026-02-23T01:14:56.719622+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68",
"status":"completed",
"timestamp":"2026-03-02T01:21:57.924168+00:00",
"s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD",
"report_type":"coaching_profiles",
"pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf",
"podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt",
"podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3",
"podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520",
"status":"completed",
"timestamp":"2026-03-09T01:12:54.568944+...
|
41775
|
|
41776
|
885
|
31
|
2026-04-17T06:25:23.922499+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407123922_m2.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1475,
"media_type": "podcast",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1548,
"media_type": "pdf",
"response": {"request_id":"26ab917c-6907-416d-806d-679c3a49cfc1","status":"completed","timestamp":"2026-03-16T01:15:23.832336+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.03046875,"top":0.017361112,"width":0.0453125,"height":0.022222223},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.07578125,"top":0.017361112,"width":0.14960937,"height":0.022222223},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","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.78515625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"bounds":{"left":0.803125,"top":0.017361112,"width":0.09765625,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9007813,"top":0.017361112,"width":0.01328125,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"bounds":{"left":0.9140625,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9273437,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.96015626,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9734375,"top":0.017361112,"width":0.01328125,"height":0.022222223},"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.9867188,"top":0.017361112,"width":0.013281226,"height":0.022222223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"bounds":{"left":0.32460937,"top":0.23819445,"width":0.009375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.33632812,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.34726563,"top":0.23819445,"width":0.00859375,"height":0.013194445},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.3578125,"top":0.23680556,"width":0.00859375,"height":0.015972223},"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.36640626,"top":0.23680556,"width":0.008203125,"height":0.015972223},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.049609374,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.0140625,"top":0.041666668,"width":0.028515626,"height":0.021527778},"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.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.23320313,"top":1.0,"width":0.01015625,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
987808237272277119
|
5016835844492794668
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1475,
"media_type": "podcast",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1548,
"media_type": "pdf",
"response": {"request_id":"26ab917c-6907-416d-806d-679c3a49cfc1","status":"completed","timestamp":"2026-03-16T01:15:23.832336+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-4...
|
41774
|
|
41775
|
884
|
24
|
2026-04-17T06:25:23.930590+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-17/1776 /Users/lukas/.screenpipe/data/data/2026-04-17/1776407123930_m1.jpg...
|
PhpStorm
|
faVsco.js – ~/Library/Application Support/JetBrain faVsco.js – ~/Library/Application Support/JetBrains/PhpStorm2026.1/scratches/scratch_1.json...
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1475,
"media_type": "podcast",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1548,
"media_type": "pdf",
"response": {"request_id":"26ab917c-6907-416d-806d-679c3a49cfc1","status":"completed","timestamp":"2026-03-16T01:15:23.832336+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-4...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny, but local branch is out of sync with remote","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsCommandTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsCommandTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"8","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","depth":4,"value":"<?php\n\nnamespace Jiminny\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\nuse Illuminate\\Database\\Eloquent\\Relations\\BelongsTo;\nuse Illuminate\\Database\\Eloquent\\Relations\\HasMany;\nuse Illuminate\\Support\\Carbon;\nuse Jiminny\\Traits\\RequiresUUID;\n\n/**\n * Jiminny\\Models\\AutomatedReportResult\n *\n * @property int $id\n * @property string $uuid\n * @property int $report_id\n * @property string|null $name\n * @property int $status\n * @property int $reason\n * @property string $media_type\n * @property int|null $parent_id\n * @property array|null $payload\n * @property array|null $response\n * @property Carbon|null $requested_at\n * @property Carbon|null $generated_at\n * @property Carbon|null $sent_at\n * @property Carbon|null $created_at\n * @property Carbon|null $updated_at\n * @property-read \\Jiminny\\Models\\AutomatedReport $report\n * @property-read AutomatedReportResult|null $parent\n * @property-read \\Illuminate\\Database\\Eloquent\\Collection<int, AutomatedReportResult> $children\n */\nclass AutomatedReportResult extends Model\n{\n use RequiresUUID;\n\n /**\n * Status constants\n */\n public const int STATUS_DEFAULT = 0;\n public const int STATUS_REQUESTED = 1;\n public const int STATUS_GENERATED = 2;\n public const int STATUS_SENT = 3;\n public const int STATUS_FAILED = 4;\n\n /**\n * Reason constants\n */\n public const int REASON_DEFAULT = 0;\n public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;\n public const int REASON_PROPHET_API_ERROR = 2;\n\n protected $table = 'automated_report_results';\n\n /**\n * The attributes that are mass assignable.\n *\n * @var array<int, string>\n */\n protected $fillable = [\n 'report_id',\n 'name',\n 'status',\n 'reason',\n 'media_type',\n 'parent_id',\n 'payload',\n 'response',\n 'requested_at',\n 'generated_at',\n 'sent_at',\n ];\n\n /**\n * Get the attributes that should be cast.\n *\n * @return array<string, string>\n */\n protected function casts(): array\n {\n return [\n 'payload' => 'array',\n 'response' => 'array',\n 'requested_at' => 'datetime',\n 'generated_at' => 'datetime',\n 'sent_at' => 'datetime',\n ];\n }\n\n /**\n * Get the automated report that owns this result.\n *\n * @return BelongsTo\n */\n public function report(): BelongsTo\n {\n return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();\n }\n\n /**\n * Get the parent report result.\n *\n * @return BelongsTo\n */\n public function parent(): BelongsTo\n {\n return $this->belongsTo(self::class, 'parent_id');\n }\n\n /**\n * Get the child report results.\n *\n * @return HasMany\n */\n public function children(): HasMany\n {\n return $this->hasMany(self::class, 'parent_id');\n }\n\n /**\n * Get the ID of the automated report result.\n *\n * @return int\n */\n public function getId(): int\n {\n return $this->getAttribute('id');\n }\n\n /**\n * Get the UUID of the automated report result.\n *\n * @return string\n */\n public function getUuid(): string\n {\n return $this->getAttribute('id_string');\n }\n\n /**\n * Get the report ID of the automated report result.\n *\n * @return int\n */\n public function getReportId(): int\n {\n return $this->getAttribute('report_id');\n }\n\n /**\n * Get the name of the automated report result.\n *\n * @return ?string\n */\n public function getName(): ?string\n {\n return $this->getAttribute('name');\n }\n\n /**\n * Get the status of the automated report result.\n *\n * @return int\n */\n public function getStatus(): int\n {\n return $this->getAttribute('status');\n }\n\n /**\n * Get the reason of the automated report result.\n *\n * @return int\n */\n public function getReason(): int\n {\n return $this->getAttribute('reason');\n }\n\n /**\n * Get the media type of the automated report result.\n *\n * @return string\n */\n public function getMediaType(): ?string\n {\n return $this->getAttribute('media_type');\n }\n\n /**\n * Get the parent ID of the automated report result.\n *\n * @return int|null\n */\n public function getParentId(): ?int\n {\n return $this->getAttribute('parent_id');\n }\n\n /**\n * Get the payload of the automated report result.\n *\n * @return array|null\n */\n public function getPayload(): ?array\n {\n return $this->getAttribute('payload');\n }\n\n /**\n * Get the response of the automated report result.\n *\n * @return array|null\n */\n public function getResponse(): ?array\n {\n return $this->getAttribute('response');\n }\n\n /**\n * Get the requested at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getRequestedAt(): ?Carbon\n {\n return $this->getAttribute('requested_at');\n }\n\n /**\n * Get the generated at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getGeneratedAt(): ?Carbon\n {\n return $this->getAttribute('generated_at');\n }\n\n /**\n * Get the sent at date of the automated report result.\n *\n * @return Carbon|null\n */\n public function getSentAt(): ?Carbon\n {\n return $this->getAttribute('sent_at');\n }\n\n /**\n * Get the created at date of the automated report result.\n *\n * @return Carbon\n */\n public function getCreatedAt(): Carbon\n {\n return $this->getAttribute('created_at');\n }\n\n /**\n * Get the updated at date of the automated report result.\n *\n * @return Carbon\n */\n public function getUpdatedAt(): Carbon\n {\n return $this->getAttribute('updated_at');\n }\n\n /**\n * Check if the report result is in requested status.\n *\n * @return bool\n */\n public function isRequested(): bool\n {\n return $this->getStatus() === self::STATUS_REQUESTED;\n }\n\n /**\n * Check if the report result is in generated status.\n *\n * @return bool\n */\n public function isGenerated(): bool\n {\n return $this->getStatus() === self::STATUS_GENERATED;\n }\n\n /**\n * Check if the report result is in sent status.\n *\n * @return bool\n */\n public function isSent(): bool\n {\n return $this->getStatus() === self::STATUS_SENT;\n }\n\n /**\n * Check if the report result is in failed status.\n *\n * @return bool\n */\n public function isFailed(): bool\n {\n return $this->getStatus() === self::STATUS_FAILED;\n }\n\n public function getStatusLabel(): string\n {\n return match ($this->getStatus()) {\n self::STATUS_REQUESTED => 'Requested',\n self::STATUS_GENERATED => 'Generated',\n self::STATUS_SENT => 'Sent',\n self::STATUS_FAILED => 'Failed',\n default => 'Default',\n };\n }\n\n public function getReport(): AutomatedReport\n {\n return $this->getAttribute('report');\n }\n\n public function getFromDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['from_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['from_date']);\n }\n\n public function getToDate(): ?Carbon\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['to_date'])) {\n return null;\n }\n\n return Carbon::parse($payload['to_date']);\n }\n\n public function getReportType(): ?string\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['report_type'])) {\n return null;\n }\n\n return $payload['report_type'];\n }\n\n public function getGroups(): array\n {\n $payload = $this->getPayload();\n\n if (empty($payload) || empty($payload['group_ids'])) {\n return [];\n }\n\n return $payload['group_ids'];\n }\n\n public function getPdfUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['pdf_url'] ?? null;\n }\n\n public function getPodcastAudioUrl(): ?string\n {\n $response = $this->getResponse();\n\n return $response['podcast_audio_url'] ?? null;\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","depth":4,"value":"[\n {\n \"id\": 136,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 137,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"debee4b3-1c28-4112-ad1b-f0dbe67c452c\",\"status\":\"completed\",\"timestamp\":\"2025-09-29T01:09:25.039253+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml\"}\n },\n {\n \"id\": 149,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 150,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"81690efb-e296-4efe-ba74-51217e91bc7e\",\"status\":\"completed\",\"timestamp\":\"2025-10-06T01:05:39.117068+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml\"}\n },\n {\n \"id\": 166,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 167,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"43fc8095-52f0-420b-ade2-409b8ed8b7ee\",\"status\":\"completed\",\"timestamp\":\"2025-10-13T01:08:35.779362+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml\"}\n },\n {\n \"id\": 214,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 215,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"985cab60-fae4-47e9-8779-0b653827b635\",\"status\":\"completed\",\"timestamp\":\"2025-10-20T01:07:43.633450+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml\"}\n },\n {\n \"id\": 297,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 298,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"cacce61e-fb58-47b6-97f5-b17b98d453d2\",\"status\":\"completed\",\"timestamp\":\"2025-10-27T01:02:34.789377+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml\"}\n },\n {\n \"id\": 365,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 366,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"a1971341-a81e-45bc-9d17-1ad914163010\",\"status\":\"completed\",\"timestamp\":\"2025-11-03T01:03:31.381285+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml\"}\n },\n {\n \"id\": 410,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 411,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30\",\"status\":\"completed\",\"timestamp\":\"2025-11-10T01:05:31.021881+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml\"}\n },\n {\n \"id\": 485,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 486,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"18d3cc3d-95ac-434b-a21c-076318bd77aa\",\"status\":\"completed\",\"timestamp\":\"2025-11-17T01:05:21.492550+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml\"}\n },\n {\n \"id\": 592,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 593,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d0f6fbb3-e86d-49bb-a863-8238aea5b401\",\"status\":\"completed\",\"timestamp\":\"2025-11-24T01:06:05.698838+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml\"}\n },\n {\n \"id\": 636,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 638,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"264a5a2a-1e0d-49b5-aeba-268a19a74f85\",\"status\":\"completed\",\"timestamp\":\"2025-12-01T01:11:00.769937+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml\"}\n },\n {\n \"id\": 704,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 705,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565\",\"status\":\"completed\",\"timestamp\":\"2025-12-08T01:06:28.080704+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml\"}\n },\n {\n \"id\": 762,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 763,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"de426138-2bce-43b9-9c6f-31079b2abc44\",\"status\":\"completed\",\"timestamp\":\"2025-12-15T01:02:21.300804+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml\"}\n },\n {\n \"id\": 801,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 802,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"3ca694c0-d6a5-4937-8d60-8d69f0bca04f\",\"status\":\"completed\",\"timestamp\":\"2025-12-22T01:06:16.547481+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml\"}\n },\n {\n \"id\": 830,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 831,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 915,\n \"media_type\": \"pdf\",\n \"response\": null\n },\n {\n \"id\": 916,\n \"media_type\": \"podcast\",\n \"response\": null\n },\n {\n \"id\": 936,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 937,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"64123b94-2da0-48d4-a712-bb35e9af586d\",\"status\":\"completed\",\"timestamp\":\"2026-01-12T01:02:07.988029+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml\"}\n },\n {\n \"id\": 993,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 995,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"d09beab4-afb6-47bc-b8bc-9a1c0c900b19\",\"status\":\"completed\",\"timestamp\":\"2026-01-19T01:02:53.956691+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml\"}\n },\n {\n \"id\": 1026,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1027,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"6c389d6a-7418-42ba-beb6-449dca36585f\",\"status\":\"completed\",\"timestamp\":\"2026-01-26T01:02:56.634667+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml\"}\n },\n {\n \"id\": 1146,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1147,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"df566c11-80ff-42ef-9996-1e80909e7bc2\",\"status\":\"completed\",\"timestamp\":\"2026-02-02T01:07:57.335690+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml\"}\n },\n {\n \"id\": 1221,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1222,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0d7a164c-ae0c-4411-8778-4b6ffc201dde\",\"status\":\"completed\",\"timestamp\":\"2026-02-09T01:14:26.525625+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml\"}\n },\n {\n \"id\": 1250,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1251,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"249776ec-1163-486a-a288-f3a99b1b1a00\",\"status\":\"completed\",\"timestamp\":\"2026-02-16T01:05:49.814997+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml\"}\n },\n {\n \"id\": 1319,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1320,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"4f9599a9-9ca9-4b05-862a-4f4461a4a754\",\"status\":\"completed\",\"timestamp\":\"2026-02-23T01:14:56.719622+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml\"}\n },\n {\n \"id\": 1438,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1439,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"7c99607a-ca13-4d6c-8928-ed6a33073e68\",\"status\":\"completed\",\"timestamp\":\"2026-03-02T01:21:57.924168+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml\"}\n },\n {\n \"id\": 1474,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1475,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"1c696c7b-88ef-43d0-ade4-8f006602f520\",\"status\":\"completed\",\"timestamp\":\"2026-03-09T01:12:54.568944+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml\"}\n },\n {\n \"id\": 1548,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1549,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"26ab917c-6907-416d-806d-679c3a49cfc1\",\"status\":\"completed\",\"timestamp\":\"2026-03-16T01:15:23.832336+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.ssml\"}\n },\n {\n \"id\": 1597,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1598,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"b096971f-2533-425e-ac37-f0b4798b5b32\",\"status\":\"completed\",\"timestamp\":\"2026-03-23T01:14:51.290976+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/b096971f-2533-425e-ac37-f0b4798b5b32_podcast.ssml\"}\n },\n {\n \"id\": 1659,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1660,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0ca73e35-7a57-4689-abf6-46ef280cd20f\",\"status\":\"completed\",\"timestamp\":\"2026-03-30T01:24:50.835939+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0ca73e35-7a57-4689-abf6-46ef280cd20f_podcast.ssml\"}\n },\n {\n \"id\": 1809,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1810,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"0f650641-7319-4ef8-b6aa-95ce56ce8ee2\",\"status\":\"completed\",\"timestamp\":\"2026-04-06T01:03:35.051311+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.MD\",\"report_type\":\"coaching_profiles\",\"pdf_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2.pdf\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/0f650641-7319-4ef8-b6aa-95ce56ce8ee2_podcast.ssml\"}\n },\n {\n \"id\": 1872,\n \"media_type\": \"pdf\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n },\n {\n \"id\": 1873,\n \"media_type\": \"podcast\",\n \"response\": {\"request_id\":\"822fa41b-afd3-43a9-a248-86b0e36f3131\",\"status\":\"completed\",\"timestamp\":\"2026-04-13T01:11:48.648399+00:00\",\"s3_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131.MD\",\"report_type\":\"coaching_profiles\",\"podcast_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.txt\",\"podcast_audio_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.mp3\",\"podcast_ssml_url\":\"s3:\\/\\/jiminny.client-data\\/5f0f4810-7e77-4086-8f69-93429ae4d70b\\/reports\\/822fa41b-afd3-43a9-a248-86b0e36f3131_podcast.ssml\"}\n }\n]","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
987808237272277119
|
5016835844492794668
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsCommandTest
Run 'AutomatedReportsCommandTest'
Debug 'AutomatedReportsCommandTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
8
1
1
Previous Highlighted Error
Next Highlighted Error
<?php
namespace Jiminny\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Carbon;
use Jiminny\Traits\RequiresUUID;
/**
* Jiminny\Models\AutomatedReportResult
*
* @property int $id
* @property string $uuid
* @property int $report_id
* @property string|null $name
* @property int $status
* @property int $reason
* @property string $media_type
* @property int|null $parent_id
* @property array|null $payload
* @property array|null $response
* @property Carbon|null $requested_at
* @property Carbon|null $generated_at
* @property Carbon|null $sent_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read \Jiminny\Models\AutomatedReport $report
* @property-read AutomatedReportResult|null $parent
* @property-read \Illuminate\Database\Eloquent\Collection<int, AutomatedReportResult> $children
*/
class AutomatedReportResult extends Model
{
use RequiresUUID;
/**
* Status constants
*/
public const int STATUS_DEFAULT = 0;
public const int STATUS_REQUESTED = 1;
public const int STATUS_GENERATED = 2;
public const int STATUS_SENT = 3;
public const int STATUS_FAILED = 4;
/**
* Reason constants
*/
public const int REASON_DEFAULT = 0;
public const int REASON_NOT_ENOUGH_ACTIVITIES = 1;
public const int REASON_PROPHET_API_ERROR = 2;
protected $table = 'automated_report_results';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'report_id',
'name',
'status',
'reason',
'media_type',
'parent_id',
'payload',
'response',
'requested_at',
'generated_at',
'sent_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'payload' => 'array',
'response' => 'array',
'requested_at' => 'datetime',
'generated_at' => 'datetime',
'sent_at' => 'datetime',
];
}
/**
* Get the automated report that owns this result.
*
* @return BelongsTo
*/
public function report(): BelongsTo
{
return $this->belongsTo(AutomatedReport::class, 'report_id')->withTrashed();
}
/**
* Get the parent report result.
*
* @return BelongsTo
*/
public function parent(): BelongsTo
{
return $this->belongsTo(self::class, 'parent_id');
}
/**
* Get the child report results.
*
* @return HasMany
*/
public function children(): HasMany
{
return $this->hasMany(self::class, 'parent_id');
}
/**
* Get the ID of the automated report result.
*
* @return int
*/
public function getId(): int
{
return $this->getAttribute('id');
}
/**
* Get the UUID of the automated report result.
*
* @return string
*/
public function getUuid(): string
{
return $this->getAttribute('id_string');
}
/**
* Get the report ID of the automated report result.
*
* @return int
*/
public function getReportId(): int
{
return $this->getAttribute('report_id');
}
/**
* Get the name of the automated report result.
*
* @return ?string
*/
public function getName(): ?string
{
return $this->getAttribute('name');
}
/**
* Get the status of the automated report result.
*
* @return int
*/
public function getStatus(): int
{
return $this->getAttribute('status');
}
/**
* Get the reason of the automated report result.
*
* @return int
*/
public function getReason(): int
{
return $this->getAttribute('reason');
}
/**
* Get the media type of the automated report result.
*
* @return string
*/
public function getMediaType(): ?string
{
return $this->getAttribute('media_type');
}
/**
* Get the parent ID of the automated report result.
*
* @return int|null
*/
public function getParentId(): ?int
{
return $this->getAttribute('parent_id');
}
/**
* Get the payload of the automated report result.
*
* @return array|null
*/
public function getPayload(): ?array
{
return $this->getAttribute('payload');
}
/**
* Get the response of the automated report result.
*
* @return array|null
*/
public function getResponse(): ?array
{
return $this->getAttribute('response');
}
/**
* Get the requested at date of the automated report result.
*
* @return Carbon|null
*/
public function getRequestedAt(): ?Carbon
{
return $this->getAttribute('requested_at');
}
/**
* Get the generated at date of the automated report result.
*
* @return Carbon|null
*/
public function getGeneratedAt(): ?Carbon
{
return $this->getAttribute('generated_at');
}
/**
* Get the sent at date of the automated report result.
*
* @return Carbon|null
*/
public function getSentAt(): ?Carbon
{
return $this->getAttribute('sent_at');
}
/**
* Get the created at date of the automated report result.
*
* @return Carbon
*/
public function getCreatedAt(): Carbon
{
return $this->getAttribute('created_at');
}
/**
* Get the updated at date of the automated report result.
*
* @return Carbon
*/
public function getUpdatedAt(): Carbon
{
return $this->getAttribute('updated_at');
}
/**
* Check if the report result is in requested status.
*
* @return bool
*/
public function isRequested(): bool
{
return $this->getStatus() === self::STATUS_REQUESTED;
}
/**
* Check if the report result is in generated status.
*
* @return bool
*/
public function isGenerated(): bool
{
return $this->getStatus() === self::STATUS_GENERATED;
}
/**
* Check if the report result is in sent status.
*
* @return bool
*/
public function isSent(): bool
{
return $this->getStatus() === self::STATUS_SENT;
}
/**
* Check if the report result is in failed status.
*
* @return bool
*/
public function isFailed(): bool
{
return $this->getStatus() === self::STATUS_FAILED;
}
public function getStatusLabel(): string
{
return match ($this->getStatus()) {
self::STATUS_REQUESTED => 'Requested',
self::STATUS_GENERATED => 'Generated',
self::STATUS_SENT => 'Sent',
self::STATUS_FAILED => 'Failed',
default => 'Default',
};
}
public function getReport(): AutomatedReport
{
return $this->getAttribute('report');
}
public function getFromDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['from_date'])) {
return null;
}
return Carbon::parse($payload['from_date']);
}
public function getToDate(): ?Carbon
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['to_date'])) {
return null;
}
return Carbon::parse($payload['to_date']);
}
public function getReportType(): ?string
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['report_type'])) {
return null;
}
return $payload['report_type'];
}
public function getGroups(): array
{
$payload = $this->getPayload();
if (empty($payload) || empty($payload['group_ids'])) {
return [];
}
return $payload['group_ids'];
}
public function getPdfUrl(): ?string
{
$response = $this->getResponse();
return $response['pdf_url'] ?? null;
}
public function getPodcastAudioUrl(): ?string
{
$response = $this->getResponse();
return $response['podcast_audio_url'] ?? null;
}
}
Code changed:
Hide
Sync Changes
Hide This Notification
[
{
"id": 136,
"media_type": "pdf",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 137,
"media_type": "podcast",
"response": {"request_id":"debee4b3-1c28-4112-ad1b-f0dbe67c452c","status":"completed","timestamp":"2025-09-29T01:09:25.039253+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/debee4b3-1c28-4112-ad1b-f0dbe67c452c_podcast.ssml"}
},
{
"id": 149,
"media_type": "pdf",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 150,
"media_type": "podcast",
"response": {"request_id":"81690efb-e296-4efe-ba74-51217e91bc7e","status":"completed","timestamp":"2025-10-06T01:05:39.117068+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.json","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/81690efb-e296-4efe-ba74-51217e91bc7e_podcast.ssml"}
},
{
"id": 166,
"media_type": "pdf",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 167,
"media_type": "podcast",
"response": {"request_id":"43fc8095-52f0-420b-ade2-409b8ed8b7ee","status":"completed","timestamp":"2025-10-13T01:08:35.779362+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/43fc8095-52f0-420b-ade2-409b8ed8b7ee_podcast.ssml"}
},
{
"id": 214,
"media_type": "pdf",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 215,
"media_type": "podcast",
"response": {"request_id":"985cab60-fae4-47e9-8779-0b653827b635","status":"completed","timestamp":"2025-10-20T01:07:43.633450+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/985cab60-fae4-47e9-8779-0b653827b635_podcast.ssml"}
},
{
"id": 297,
"media_type": "pdf",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 298,
"media_type": "podcast",
"response": {"request_id":"cacce61e-fb58-47b6-97f5-b17b98d453d2","status":"completed","timestamp":"2025-10-27T01:02:34.789377+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/cacce61e-fb58-47b6-97f5-b17b98d453d2_podcast.ssml"}
},
{
"id": 365,
"media_type": "pdf",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 366,
"media_type": "podcast",
"response": {"request_id":"a1971341-a81e-45bc-9d17-1ad914163010","status":"completed","timestamp":"2025-11-03T01:03:31.381285+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/a1971341-a81e-45bc-9d17-1ad914163010_podcast.ssml"}
},
{
"id": 410,
"media_type": "pdf",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 411,
"media_type": "podcast",
"response": {"request_id":"7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30","status":"completed","timestamp":"2025-11-10T01:05:31.021881+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7554c504-3b8e-4bb9-9cc0-1b4bf3d2ce30_podcast.ssml"}
},
{
"id": 485,
"media_type": "pdf",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 486,
"media_type": "podcast",
"response": {"request_id":"18d3cc3d-95ac-434b-a21c-076318bd77aa","status":"completed","timestamp":"2025-11-17T01:05:21.492550+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/18d3cc3d-95ac-434b-a21c-076318bd77aa_podcast.ssml"}
},
{
"id": 592,
"media_type": "pdf",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 593,
"media_type": "podcast",
"response": {"request_id":"d0f6fbb3-e86d-49bb-a863-8238aea5b401","status":"completed","timestamp":"2025-11-24T01:06:05.698838+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d0f6fbb3-e86d-49bb-a863-8238aea5b401_podcast.ssml"}
},
{
"id": 636,
"media_type": "pdf",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 638,
"media_type": "podcast",
"response": {"request_id":"264a5a2a-1e0d-49b5-aeba-268a19a74f85","status":"completed","timestamp":"2025-12-01T01:11:00.769937+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/264a5a2a-1e0d-49b5-aeba-268a19a74f85_podcast.ssml"}
},
{
"id": 704,
"media_type": "pdf",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 705,
"media_type": "podcast",
"response": {"request_id":"d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565","status":"completed","timestamp":"2025-12-08T01:06:28.080704+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d2cbe2d8-eee5-42d0-8bfc-c74ea50b0565_podcast.ssml"}
},
{
"id": 762,
"media_type": "pdf",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 763,
"media_type": "podcast",
"response": {"request_id":"de426138-2bce-43b9-9c6f-31079b2abc44","status":"completed","timestamp":"2025-12-15T01:02:21.300804+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/de426138-2bce-43b9-9c6f-31079b2abc44_podcast.ssml"}
},
{
"id": 801,
"media_type": "pdf",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 802,
"media_type": "podcast",
"response": {"request_id":"3ca694c0-d6a5-4937-8d60-8d69f0bca04f","status":"completed","timestamp":"2025-12-22T01:06:16.547481+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/3ca694c0-d6a5-4937-8d60-8d69f0bca04f_podcast.ssml"}
},
{
"id": 830,
"media_type": "pdf",
"response": null
},
{
"id": 831,
"media_type": "podcast",
"response": null
},
{
"id": 915,
"media_type": "pdf",
"response": null
},
{
"id": 916,
"media_type": "podcast",
"response": null
},
{
"id": 936,
"media_type": "pdf",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 937,
"media_type": "podcast",
"response": {"request_id":"64123b94-2da0-48d4-a712-bb35e9af586d","status":"completed","timestamp":"2026-01-12T01:02:07.988029+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/64123b94-2da0-48d4-a712-bb35e9af586d_podcast.ssml"}
},
{
"id": 993,
"media_type": "pdf",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 995,
"media_type": "podcast",
"response": {"request_id":"d09beab4-afb6-47bc-b8bc-9a1c0c900b19","status":"completed","timestamp":"2026-01-19T01:02:53.956691+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/d09beab4-afb6-47bc-b8bc-9a1c0c900b19_podcast.ssml"}
},
{
"id": 1026,
"media_type": "pdf",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1027,
"media_type": "podcast",
"response": {"request_id":"6c389d6a-7418-42ba-beb6-449dca36585f","status":"completed","timestamp":"2026-01-26T01:02:56.634667+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/6c389d6a-7418-42ba-beb6-449dca36585f_podcast.ssml"}
},
{
"id": 1146,
"media_type": "pdf",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1147,
"media_type": "podcast",
"response": {"request_id":"df566c11-80ff-42ef-9996-1e80909e7bc2","status":"completed","timestamp":"2026-02-02T01:07:57.335690+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/df566c11-80ff-42ef-9996-1e80909e7bc2_podcast.ssml"}
},
{
"id": 1221,
"media_type": "pdf",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1222,
"media_type": "podcast",
"response": {"request_id":"0d7a164c-ae0c-4411-8778-4b6ffc201dde","status":"completed","timestamp":"2026-02-09T01:14:26.525625+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/0d7a164c-ae0c-4411-8778-4b6ffc201dde_podcast.ssml"}
},
{
"id": 1250,
"media_type": "pdf",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1251,
"media_type": "podcast",
"response": {"request_id":"249776ec-1163-486a-a288-f3a99b1b1a00","status":"completed","timestamp":"2026-02-16T01:05:49.814997+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/249776ec-1163-486a-a288-f3a99b1b1a00_podcast.ssml"}
},
{
"id": 1319,
"media_type": "pdf",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1320,
"media_type": "podcast",
"response": {"request_id":"4f9599a9-9ca9-4b05-862a-4f4461a4a754","status":"completed","timestamp":"2026-02-23T01:14:56.719622+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/4f9599a9-9ca9-4b05-862a-4f4461a4a754_podcast.ssml"}
},
{
"id": 1438,
"media_type": "pdf",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1439,
"media_type": "podcast",
"response": {"request_id":"7c99607a-ca13-4d6c-8928-ed6a33073e68","status":"completed","timestamp":"2026-03-02T01:21:57.924168+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/7c99607a-ca13-4d6c-8928-ed6a33073e68_podcast.ssml"}
},
{
"id": 1474,
"media_type": "pdf",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1475,
"media_type": "podcast",
"response": {"request_id":"1c696c7b-88ef-43d0-ade4-8f006602f520","status":"completed","timestamp":"2026-03-09T01:12:54.568944+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.mp3","podcast_ssml_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/1c696c7b-88ef-43d0-ade4-8f006602f520_podcast.ssml"}
},
{
"id": 1548,
"media_type": "pdf",
"response": {"request_id":"26ab917c-6907-416d-806d-679c3a49cfc1","status":"completed","timestamp":"2026-03-16T01:15:23.832336+00:00","s3_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.MD","report_type":"coaching_profiles","pdf_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1.pdf","podcast_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-416d-806d-679c3a49cfc1_podcast.txt","podcast_audio_url":"s3:\/\/jiminny.client-data\/5f0f4810-7e77-4086-8f69-93429ae4d70b\/reports\/26ab917c-6907-4...
|
NULL
|
|
67747
|
1525
|
19
|
2026-04-21T15:59:14.067664+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787154067_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.22905028,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.22825219,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"bounds":{"left":0.29587767,"top":0.22745411,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.43716756,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.3949468,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.4035904,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.41223404,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.42087767,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.4268617,"top":0.25778133,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.43583778,"top":0.25618514,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.4431516,"top":0.25618514,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.45179522,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.46043882,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.4714096,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.4800532,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.4886968,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.49966756,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.5106383,"top":0.09896249,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.53723407,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.5482048,"top":0.09896249,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.6599069,"top":0.09896249,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.6409575,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.6525931,"top":0.123703115,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.66389626,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.67519945,"top":0.12210695,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.6825133,"top":0.12210695,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67746
|
1524
|
11
|
2026-04-21T15:59:13.733176+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787153733_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-578699611325630414
|
-3293517634176052388
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History...
|
NULL
|
|
67745
|
1525
|
18
|
2026-04-21T15:59:05.626751+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787145626_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
PhostormVIewNavicarecodeFV faVsco.js#11894 on JY-1 PhostormVIewNavicarecodeFV faVsco.js#11894 on JY-18909-auProledey> DVOphp helpers.phpC) InitialFrontendState.pnp© Jiminny.phpC Plan.pnp© Serializer.php© TeamScimDetails.php> @ bootstrap> D build.>@J config|>CJ contrib|> [ database>O docs> troni-end>C) langnode modules library root> O phpstan> publicv D resourcesv viewsD emails• MactivitiesM calendars>M crmM nostmark-temolatesv Mrenortsask-jiminny-report-generatreport-generated.blade.phgreport-not-generated.bladeehutton hlade nhnconference-footer.blade.phpTooter.olade.ongsms.blade.phptemplate.blade.php> O errors.notitications• C partials.0 shared•D vendonv D routesphp aoi.onophp api v2.phpphp console.ohophp customer abi.ohophp embedded.ohoC) AutomatedReportsRepositoryTest.pnp=custom.log=laravel.logA SF [jiminny@localhost]4 HS_local (jiminny@localhost]service.pnp© ReportController.phpA console [PROD]A console [eu)A console [STAGING] X©› AutomatedReportsServiceTest.phpdo jiminny v019 A17 V13 ^ VC) CreateAcuivityLoggedevent.onpselect * from crm_profiles where user_id = 7160;select * from features:seLectC) SendReportMailJob.phpC) RequestGenerateReportJob.pho(C) AutomatedReportResult.phgphp api.phophp api v2.phpphp web.php X(C) Controllers/UserAutomatedReportsController.phg(C) AutomatedReport.phoP Cc W.*153453553653781 ^ y 559Srouter->group(['middleware' => ['auth', 'activeUser']], static function (Router Srouter): void {I/ Social Account connectionSrourer->gere un"connecc/provzder',Unboaroloncrouler:.class.'connect'])#id, vuid, type, provider, playbook category_id, user id, lead id, contact id, acco# crm_configuration_id, crm_provider_id, transcription_id, statustrom acuivicles where crm contiguracion 10 = 1 ana cype = 'conterence# and crm_provider_id IS NOT NULLand provzder =ano acrual start uime Is Nul NULLORDER by id desc;select * fromactivities where 1d = 54747783: # 00U0400000pCzonMACI->where(u'provider' => RouteProvider ast::ourldRoutedotzonlisto54854315445451546select p.1d. p.activity tvoe. oc.1d. pc.nameFROM playbooks pjoin playbook_categories pc <->l.n: on p.id = pc.playbook_1dwhere p.team_id = 1 and p.activity_type = 'event';549550Registration bv Iinvitation551Srouter->get( uri:'onboard', [OnboardController::class, 'show'])->name( na'show.onboard.page'); /onboardScouter->nostduri:'onboard', "OnboardController::class. 'undate'])->name dnalSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';SELECT * FROM eom field values WHERE crm field 1d = 4.select * from crm_layouts cl join playbook_layouts pl1<->1..n: on cl.id = pl.layout,where crm_configuration_id = 1 and pl.playbook_id = 175;Scouter->aroundi'middlewarel => IvalidUsen'] static function Router Srouter): void<Snouten->aet( ur: "/dachhoand! "ScontendControllen..clacs Inenden!l->namedname: "dachhoand!)• IdachhoardSrouter->get( uri: '/team-insights', [FrontendController::class, 'render']) /team-insights'show.team-insights-page');Srouter->get( uri: '/team-insights/dashboard', [FrontendController::class, 'render'])'show.team-insights.dashboard'):I nondoni1)snow.ceam-insigncs.scaclsclcs''/team-insights/themes'. [FrontendController::class, 'render']) /team-insiahts/themesshow. ceam-ins1oncs.chemes'Srouter->get( u'/team-insights/deals'. [FrontendController::class, 'render']) /team-insiahts/deals1116117Srouter->gete uri'/team-ins1ahts/coachinq'.Frontendcontroller::class.i'render']) /team-insiahts/coachingshow.team-1ns1ahts.coachinq')Srouter->gete ur"/team-insights/conversations'. [FrontendController::class.55755₴ select * from teams;SELECT r.* FROM automated_reports rjoin teams t on r.team id = t.idWHERE r. frequency = 'daily}and r.status = 1AND t.status = 'active'AND (r.expires at >= nowo OR r.expires at IS NULL):select * from automated_report results where report id IN (18. 33):select * from activity searches where 1d = 109321select * from activity_search_filters where activity_search_id = 10932;select * fromts order by 1d descort results orden ov 1d descselect * fromlautomated report results where report id IN (37):select * from users where id IN (7160,3248);select * fromlusers where aroun id IN 63710)'export'])) /team-insights/‹573SELECT * FROM automated reoorts WHERE uuid to bin('18a06a75-afd2-476f-aadc-14d4057b0SFIECT * EPOM automated nenont results WHEPE uuid to hin(1582d4h50-8cd3-42a9-9819-04php scim.ohopho unrotected weh.nhosho weh nhnpho wehhook nhn) M scrintsv Mstorand"render"])576"/team-insiahts/enaagement/export/<exporttvnes'EnaagementController:.class.'export')iteam-insiahts ennanement pynonti).Haaneealanal atatia Gunatian (Dantan danutanla dnid s100% SzTue 21 Apr 18:59:06AutomatedReportsServiceTest ~CascadeReview Planhat IntearAutomated Report EnAutomated ReportsCalendar Multi-Domal+0 ..why can't l access @web.php#L164-166 as a user | get you are not authorised to view this pageTnoughttor 45I notice the controller being referenced in the web route is actually UserAutomatedReportsController from the web namespace, not the one I wasAol anuthinn 198 A1d" CodeClaude Qnus 4.7 MediumWN Windsurf Toams 165-17UTF.8f 4 spaces...
|
NULL
|
-7416532318182226119
|
NULL
|
idle
|
ocr
|
NULL
|
PhostormVIewNavicarecodeFV faVsco.js#11894 on JY-1 PhostormVIewNavicarecodeFV faVsco.js#11894 on JY-18909-auProledey> DVOphp helpers.phpC) InitialFrontendState.pnp© Jiminny.phpC Plan.pnp© Serializer.php© TeamScimDetails.php> @ bootstrap> D build.>@J config|>CJ contrib|> [ database>O docs> troni-end>C) langnode modules library root> O phpstan> publicv D resourcesv viewsD emails• MactivitiesM calendars>M crmM nostmark-temolatesv Mrenortsask-jiminny-report-generatreport-generated.blade.phgreport-not-generated.bladeehutton hlade nhnconference-footer.blade.phpTooter.olade.ongsms.blade.phptemplate.blade.php> O errors.notitications• C partials.0 shared•D vendonv D routesphp aoi.onophp api v2.phpphp console.ohophp customer abi.ohophp embedded.ohoC) AutomatedReportsRepositoryTest.pnp=custom.log=laravel.logA SF [jiminny@localhost]4 HS_local (jiminny@localhost]service.pnp© ReportController.phpA console [PROD]A console [eu)A console [STAGING] X©› AutomatedReportsServiceTest.phpdo jiminny v019 A17 V13 ^ VC) CreateAcuivityLoggedevent.onpselect * from crm_profiles where user_id = 7160;select * from features:seLectC) SendReportMailJob.phpC) RequestGenerateReportJob.pho(C) AutomatedReportResult.phgphp api.phophp api v2.phpphp web.php X(C) Controllers/UserAutomatedReportsController.phg(C) AutomatedReport.phoP Cc W.*153453553653781 ^ y 559Srouter->group(['middleware' => ['auth', 'activeUser']], static function (Router Srouter): void {I/ Social Account connectionSrourer->gere un"connecc/provzder',Unboaroloncrouler:.class.'connect'])#id, vuid, type, provider, playbook category_id, user id, lead id, contact id, acco# crm_configuration_id, crm_provider_id, transcription_id, statustrom acuivicles where crm contiguracion 10 = 1 ana cype = 'conterence# and crm_provider_id IS NOT NULLand provzder =ano acrual start uime Is Nul NULLORDER by id desc;select * fromactivities where 1d = 54747783: # 00U0400000pCzonMACI->where(u'provider' => RouteProvider ast::ourldRoutedotzonlisto54854315445451546select p.1d. p.activity tvoe. oc.1d. pc.nameFROM playbooks pjoin playbook_categories pc <->l.n: on p.id = pc.playbook_1dwhere p.team_id = 1 and p.activity_type = 'event';549550Registration bv Iinvitation551Srouter->get( uri:'onboard', [OnboardController::class, 'show'])->name( na'show.onboard.page'); /onboardScouter->nostduri:'onboard', "OnboardController::class. 'undate'])->name dnalSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';SELECT * FROM eom field values WHERE crm field 1d = 4.select * from crm_layouts cl join playbook_layouts pl1<->1..n: on cl.id = pl.layout,where crm_configuration_id = 1 and pl.playbook_id = 175;Scouter->aroundi'middlewarel => IvalidUsen'] static function Router Srouter): void<Snouten->aet( ur: "/dachhoand! "ScontendControllen..clacs Inenden!l->namedname: "dachhoand!)• IdachhoardSrouter->get( uri: '/team-insights', [FrontendController::class, 'render']) /team-insights'show.team-insights-page');Srouter->get( uri: '/team-insights/dashboard', [FrontendController::class, 'render'])'show.team-insights.dashboard'):I nondoni1)snow.ceam-insigncs.scaclsclcs''/team-insights/themes'. [FrontendController::class, 'render']) /team-insiahts/themesshow. ceam-ins1oncs.chemes'Srouter->get( u'/team-insights/deals'. [FrontendController::class, 'render']) /team-insiahts/deals1116117Srouter->gete uri'/team-ins1ahts/coachinq'.Frontendcontroller::class.i'render']) /team-insiahts/coachingshow.team-1ns1ahts.coachinq')Srouter->gete ur"/team-insights/conversations'. [FrontendController::class.55755₴ select * from teams;SELECT r.* FROM automated_reports rjoin teams t on r.team id = t.idWHERE r. frequency = 'daily}and r.status = 1AND t.status = 'active'AND (r.expires at >= nowo OR r.expires at IS NULL):select * from automated_report results where report id IN (18. 33):select * from activity searches where 1d = 109321select * from activity_search_filters where activity_search_id = 10932;select * fromts order by 1d descort results orden ov 1d descselect * fromlautomated report results where report id IN (37):select * from users where id IN (7160,3248);select * fromlusers where aroun id IN 63710)'export'])) /team-insights/‹573SELECT * FROM automated reoorts WHERE uuid to bin('18a06a75-afd2-476f-aadc-14d4057b0SFIECT * EPOM automated nenont results WHEPE uuid to hin(1582d4h50-8cd3-42a9-9819-04php scim.ohopho unrotected weh.nhosho weh nhnpho wehhook nhn) M scrintsv Mstorand"render"])576"/team-insiahts/enaagement/export/<exporttvnes'EnaagementController:.class.'export')iteam-insiahts ennanement pynonti).Haaneealanal atatia Gunatian (Dantan danutanla dnid s100% SzTue 21 Apr 18:59:06AutomatedReportsServiceTest ~CascadeReview Planhat IntearAutomated Report EnAutomated ReportsCalendar Multi-Domal+0 ..why can't l access @web.php#L164-166 as a user | get you are not authorised to view this pageTnoughttor 45I notice the controller being referenced in the web route is actually UserAutomatedReportsController from the web namespace, not the one I wasAol anuthinn 198 A1d" CodeClaude Qnus 4.7 MediumWN Windsurf Toams 165-17UTF.8f 4 spaces...
|
67743
|
|
67744
|
1524
|
10
|
2026-04-21T15:58:59.329750+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787139329_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
idle
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67742
|
|
67743
|
1525
|
17
|
2026-04-21T15:58:34.787741+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787114787_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.22905028,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.22825219,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"bounds":{"left":0.29587767,"top":0.22745411,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.43716756,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.4268617,"top":0.25778133,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.43583778,"top":0.25618514,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.4431516,"top":0.25618514,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.45179522,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.46043882,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.4714096,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.4800532,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.4886968,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.49966756,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.5106383,"top":0.09896249,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.53723407,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.5482048,"top":0.09896249,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.6599069,"top":0.09896249,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.6409575,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.6525931,"top":0.123703115,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.66389626,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.67519945,"top":0.12210695,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.6825133,"top":0.12210695,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67731
|
1525
|
9
|
2026-04-21T15:58:09.129871+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787089129_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.22905028,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.22825219,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.22825219,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"bounds":{"left":0.29587767,"top":0.22745411,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.43716756,"top":0.22665602,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.3949468,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.4035904,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.41223404,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.42087767,"top":0.28810853,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.4268617,"top":0.25778133,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.43583778,"top":0.25618514,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.4431516,"top":0.25618514,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.45179522,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.46043882,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.4714096,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.4800532,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.4886968,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.49966756,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.5106383,"top":0.09896249,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.53723407,"top":0.09896249,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.5482048,"top":0.09896249,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.6599069,"top":0.09896249,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.6409575,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.6525931,"top":0.123703115,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.66389626,"top":0.123703115,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.67519945,"top":0.12210695,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.6825133,"top":0.12210695,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67728
|
1524
|
4
|
2026-04-21T15:57:33.834115+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787053834_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67726
|
|
67727
|
1525
|
7
|
2026-04-21T15:57:31.592228+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787051592_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67726
|
1524
|
3
|
2026-04-21T15:57:30.633493+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787050633_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8639779760144362624
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected...
|
NULL
|
|
67724
|
1525
|
5
|
2026-04-21T15:57:09.172+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787029172_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67723
|
1524
|
2
|
2026-04-21T15:57:09.171993+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787029171_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2149022384044090806
|
6686648902478107725
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
2/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67721
|
|
67722
|
1525
|
4
|
2026-04-21T15:57:04.794675+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787024794_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
8043719072324535154
|
-8628527368849355612
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
PhostormVIewINavigarecode Project: faVsco.js, menu
PhostormVIewINavigarecodeLaravelKeractorJOOISWindowFV faVsco.js#11894 on JY-18909-autc(c) AutomatedRenortsRenositorvTest.ohn> DVOphp helpers.phpAskJiminnykeponacuviyserwice.ong© AutomatedReportsSendCommand.phpC) InitialFrontendState.pnp© Jiminny.php© Plan.php© Serializer.php© TeamScimDetails.php> @ bootstrapC) Automatedkeporiscallbackservice.ong© SendReportMailJob.phppnp api.ohoc)Automatedreport.pho5 Cc w *гL Y:Srouter->group(['middleware' => ['auth', 'activeUser']], static function (Router Srouter): void {> D build.>@J config|>CJ contrib|> [ database>O docssroucer->group"m1ddleware'> troni-end>C) langnode modules library root> O phpstan> publicv D resourcesv viewsMemails• MactivitiesM calendars>M crmM oostmark-temolatesv Mrenorts#ask-jiminny-report-generatreport-generated.blade.phgreport-not-generated.bladeehutton hlade nhnconference-footer.blade.phpfooter.blade.phpsms.blade.phptemplate.blade.php> O errors.notitications> C partials0 shared•D vendonv D routesphp aoi.onophp api v2.phpphp console.ohophp customer abi.ohophp embedded.ohopho unrotected weh.ohnsho weh nhnpho wehhook nhn) M scrintsv M storand// OnDemandsrouter->get un:ondemano', rroncendconcroller::class.render"->namel name.'show.ondemand.pagerlavuistsSrouter-›get( uri:"/playlists'. [PlavlistController::class."show' ->namel name.show.plavurst.page' olavlists/ Sales Activity PlaybackSrouter->gete uri'/playback/Ractivitys', LPlaybackController::class, 'show'J) /playback/(activity)activitv.olavback)// Al ReportsSrouten->aetd uri: "ai-renorts'. 1 lai-renorteFrontendController:.class.->middlewaredi'can:canAccessAiRenorts.'User: :class]))'airenorts show'):Snouten->aetl uri: "a1-nenonts/manage!. " lai-renortc/manaadEnontendControllen..clacs->middleware(['can:canAccessAiReports,' . User::class])->name( name: 'ai,reports.manage'):Srouter->get( uri: '/ai-reports/pdf/{uuid}', [ /ai-reports/pdf/(uuid)Controllers\UserAutomatedReportsController::class, 'view',1)->name( name:'ai-reports.bdf.view'):Srouter-›get( uri:"/ai-reports/odf/{uuid}/download'. [/ai-reports/odf/{uuid}/dovcontrollers UserAutomatedReportscontroller::class.download"1)->name( name:'ai-reports.odf.download'):Srouter-›get( uri:"/ai-reports/audio/{uuid}'. [ lai-reports/audio/uuid)controllersUserAutomatedRenortscontroller..class."view'.1 ->name ( name:'ai-renorts.audio.view').Srouter->oet(uri:"/ai-renorts/audio/{uuid}/download'. [ lai-renorts/audio/fuuidY/downloadControllersUserAutomatedRenortsController::class. 'download'1 ->name( name:'ai-renorts.audio.downiload'):Srouter->group(•1 - rIлaniлaaлaлааaліванальаnv II View null requect (41 minutes adol© Field.phpC)AutomatedPenortcCommand.nhnAutomatedkeporsservice.pnp© AutomatedReportResult.php8 9 0 0100% S2Tue 21 Apr 18:57:05= custom.log=laravel.log4 SF jiminny@localhost]A HS_local (jiminny@localhost]& console [PKol)A console [EU]« console [STAGING] X535536— 539552-- 55.555=556557558566So jiminnyselect * trom users where 1d = 7160;select * from crm_profiles where user_id = 7160;select * from features;019 A17 V,13 ^# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact id, account id, opportunity_id, stage_id.# crm_configuration_id, crm_provider id, transcription_ id, statusfrom activities where crm_configuration id = 1 and type = 'conference'# and crm_provider_id IS NOT NULLand provider != 'uploader' and actual start time IS NOT NULLUKUtK by 10 descselect * from activities where id = 54747783: # 00U0400000pCzoiMAC|select p.id, p.activity type. pc.id, pc.nameFROM DLavbooks pjoin playbook_categories pc 1<->1..n: on p.id = pc.playbook_idSELEd * FROM com Fields WHERE eom conflouration 1d = 1 and obiect tvne ='event'.SELECT * FROM crm_field_values WHERE crm_field_id = 4;select * from crm_layouts cl join playbook_layouts pl 1<->1.n: on cl.id = pl.layout_idwhere erm confiauration 1d = 1 and ol.nlavbook 1d = 175:cplect * from teams.SELECT r.* FROM automated_reports rjoin teams t on r.team id = t.idNHERE r.frequency = 'dailyand r.status = 1AND t.status = 'active'AND (r.expires at >= now OR r.expires at IS NULL):select * from automated_report_results where report id IN (18, 33);select * from activity searches where id = 10932:select * from activity search_ filters where activity search 1d = 10952*1select * from automated reports order by id desc:select * fromorder by 1d descort results where report 1d IN (37select * From users where 1d iv 046013248)select * From users where arouo 1oJiN (071100:SELECT * FROM automated reports WHERE uuid to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;SELECT * FROM automated report results WHERE uuid_ to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;WN Windsurf Toams 165•54UTF.8Po 4 spaces...
|
67720
|
|
67719
|
1525
|
2
|
2026-04-21T15:56:47.976097+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787007976_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
1910160977377320534
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67718
|
|
67718
|
1525
|
1
|
2026-04-21T15:56:45.563037+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787005563_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3647950554658368171
|
-8637409553560124479
|
visual_change
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
PhpStormViewINavigarecodeLaravelKeractorJOOISWindowFV faVsco.js0 H11904 on.IY-19900-auPlan.ono© Serializer.php© TeamScimDetails.php>C bootstrap© RequestGe>L bulld>config>D contrib→ database?D docs• front-end.>lanalnode modules librarv roo>m ohostanoublicv Mresourcadv viewsM emails>MactivitiocIM calendarc>0cmM oostmark-templatesv D reportsask-jiminny-report-generatreport-generated.blade.phreoon-nor-cenerarea.oladebutton.blade.phpconference-footer.blade.phpfooter.blade.php#sms.blade.phptemplate.blade.phgM errorsa notiticationsa partialsa shareda vendov M routesphp aniv2.nhophp customer ani.ohnphp embedded.nhophp health.nhnphp scim.ohnpho unrotorted woh nhnsho wohbook nho) Mccrintev C storage› C app> D debugbarC framework(C) Service.php© AutomatedReportsCommand.php© Field.phpAutomatedReportsService.php5 Cc w *Srouter->group(['middleware' => ['auth', 'activeUser']], static function (Router Srouter): void {Srouter->group(['middleware' => 'validUser'], static function (Router Srouter): void {Srouter->aroundl'middleware' => 'can:ooendealinsiahts.', User::classi, static function Router Srouter): void <...2:OnDemandSrouter->aet( uri: "ondemand'.FrontendControllen::class.'renden']) ->name (( name: 'show.ondemand.oage"): londemandl// Playlists,Snouten->aetd uri: "/nlavlistsl, "PlavlistContnollen.class."show'])->name (¿ name: "show nlavlist nagp!)• InlavlicteSales Activitv PlavhackSrouter->get( uri'/playback/{activity}', [PlaybackController::class, 'show']) /playback/{activity}_sname@name:"activity.playback)I/ AT PononteSrouter->qet( uri: "/ai-reports'. [ /ai-reports->middleware(['can:canAccessAiReports,'User::class])'al.reports.show'Srouter->get( uri: "/ai-reports/manage'. [ lai-reports/manaae->middLewaredcan:canAccessAiReports.' , User::classi))->namedni'ai,renorts.manage')Srouter->get( uri: "/ai-reports/odf/{uuid}'. [lai-reports/odf/uuidlControllers|llserAutonatedRenontsControllen::classtviewt1)->name( nalai-renonts.ndf.view')Snouten-saet(uri:"/ai-renonts/bde/{uuid}/download!. ГJai-renorts/odflfuuidl/downloadControllens.IserAutomatedRenontsControllen.class. "download1)-sname ( narlai-renonts.ndf.download')Snouton-saot@uri:1/aicnonontc/audio/mid?t/loi.ronortc/oudio/fuuidtlControllers\UserAutomatedReportsController::class, 'view',l-snamet nameSnouton-saot/uri-1/a4-nonon+c/oudio/fuuid?/downlondt//oi.ronodc/oudio/fuuidl/downloadControllers UserAutomatedReportsController::class,'download'.1lsnomol narlodnononto oudia dounlnodt).pnp apLvz.php09 9 0= custom.log=laravel.log4 SF jiminny@localhost]HS_local [jiminny@localhost]& console [PKol)A console [EU]535536— 55955255%55.=556557558562select * trom users where 1d = 7160;select * from crm_profiles where user_id = 7160;select * from features;# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact id, account id, opportunity_ id, stage_id.# crm_configuration_id, crm_provider id, transcription_ id, statusfrom activities where crm_configuration id = 1 and type = 'conference'and crm_provider_1d Is NUT NULLand provider != 'uploader' and actual start time IS NOT NULLUKUtK by 10 descselect * from activities where id = 54747783: # 00U0400000pCzoiMAC|select p.id, p.activity type. pc.id, pc.nameFROM DLavbooks pjoin playbook_categories pc 1<->1..n: on p.id = pc.playbook_idSELEd * FROM com Fields WHERE com conflouration 1d = 1 and obiect tvne = 'event'»SELECT * FROM crm_field values WHERE crm_field_id = 4;select * from crm_layouts cl join playbook_layouts pl 1<->1.n: on cl.id = pl.layout_idwhere erm confiauration 1d = 1 and ol.nlavbook 1d = 175:cplect * from teams.SELECT r.* FROM automated_reports rjoin teams t on r.team id = t.idNHERE r.frequency = 'dailyand r.status = 1AND t.status = 'active'AND (r.expires at >= now OR r.expires at IS NULL):select * from automated_report_results where report id IN (18, 33);select * from activity searches where id = 10932:select * from activity search filters where activity search 1d = 10952:1select * from automated reports order by id desc:select * fromorder by 1d descort results where report 1d IN (37select * From users where 1d iv 0460)3248)select * From users where arouo 1oJN (710):SELECT * FROM automated_ reports WHERE uuid to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;SELECT * FROM automated report results WHERE uuid_ to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;100% S2Tue 21 Apr 18:56:45& console [STAGING] XSo jiminny019 A17 V,13 ^WN Windsurf Toams 180-114UTF.8io 4 spaces...
|
NULL
|
|
67717
|
1525
|
0
|
2026-04-21T15:56:44.017849+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787004017_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
1910160977377320534
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67714
|
|
67716
|
1524
|
0
|
2026-04-21T15:56:43.724626+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776787003724_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"5/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // AI Reports\n $router->get('/ai-reports', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.show');\n \n $router->get('/ai-reports/manage', [\n FrontendController::class, 'render',\n ])\n ->middleware(['can:canAccessAiReports,' . User::class])\n ->name('ai.reports.manage');\n \n $router->get('/ai-reports/pdf/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.pdf.view');\n \n $router->get('/ai-reports/pdf/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.pdf.download');\n \n $router->get('/ai-reports/audio/{uuid}', [\n Controllers\\UserAutomatedReportsController::class, 'view',\n ])->name('ai-reports.audio.view');\n \n $router->get('/ai-reports/audio/{uuid}/download', [\n Controllers\\UserAutomatedReportsController::class, 'download',\n ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
1910160977377320534
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
5/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// AI Reports
$router->get('/ai-reports', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [
FrontendController::class, 'render',
])
->middleware(['can:canAccessAiReports,' . User::class])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [
Controllers\UserAutomatedReportsController::class, 'view',
])->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [
Controllers\UserAutomatedReportsController::class, 'download',
])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67715
|
|
67715
|
NULL
|
0
|
2026-04-21T15:56:39.971464+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786999971_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8587160525579598601
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67714
|
NULL
|
0
|
2026-04-21T15:56:38.174823+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786998174_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n// $router->group(\n// ['middleware' => ['can:canAccessAiReports,' . User::class]],\n// static function (Router $router): void {\n// $router->get('/ai-reports', [FrontendController::class, 'render'])\n// ->name('ai.reports.show');\n//\n// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n// ->name('ai.reports.manage');\n//\n// $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.pdf.view');\n//\n// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.pdf.download');\n//\n// $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n// ->name('ai-reports.audio.view');\n//\n// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n// ->name('ai-reports.audio.download');\n// }\n// );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8587160525579598601
|
6686648885298238541
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
// $router->group(
// ['middleware' => ['can:canAccessAiReports,' . User::class]],
// static function (Router $router): void {
// $router->get('/ai-reports', [FrontendController::class, 'render'])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [FrontendController::class, 'render'])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
// ->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
// ->name('ai-reports.audio.download');
// }
// );
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67713
|
1522
|
43
|
2026-04-21T15:56:35.511402+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786995511_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-3647950554658368171
|
-8637409553560124479
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp100% <78-zsh* Build full day activity...• *4|DOCKER-zshworker-nudges:worker-nudges_00: started₴2-zshscreenpipe*What's next:Try Docker Debug for seamless, persistent debugging tools in any container or image + docker debug docker_lamp_1Learn moreat [URL_WITH_CREDENTIALS] ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ csfixdockerexec -it docker_lamp_1./vendor/bin/php-cs-fixer fix--config=.php-cs-fixer.dist.php -v --using-cache=no --diffPHP CS Fixer 3.87.1 Alexander by Fabien Potencier, Dariusz Ruminski and contributors.PHPruntime:8.3.30Running analysis on 7 cores with 10 files per process.Parallel runner is an experimental feature and may be unstable, use it at your own risk. Feedback highly appreciated!Loadedconfigdefault from-php-cs-fixer.dist.php".5609/5609100%₴85-zsh86Tue 21 Apr 18:56:35APP (-zsh)T₴1+Fixed 0 of 5609 files in 36.627 seconds, 60.00 MB memory usedWhat's next:Try Docker Debug for seamless, persistent debugging tools in any container or image → docker debug docker_lamp_1Learn more at [URL_WITH_CREDENTIALS] ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ ||...
|
67711
|
|
67712
|
1523
|
65
|
2026-04-21T15:56:29.796986+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786989796_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1/8","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8817586097865472869
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67710
|
|
67711
|
1522
|
42
|
2026-04-21T15:56:29.712561+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786989712_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"pdf","depth":4,"value":"pdf","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.0,"top":0.0,"width":0.015277778,"height":0.024444444},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1/8","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8817586097865472869
|
6686648885298238541
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
pdf
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
1/8
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67710
|
1523
|
64
|
2026-04-21T15:56:25.843666+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786985843_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
p
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
58/268
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Show Replace Field","depth":4,"bounds":{"left":0.12101064,"top":0.17956904,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Search History","depth":3,"bounds":{"left":0.13364361,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"p","depth":4,"bounds":{"left":0.14461437,"top":0.17877094,"width":0.10139628,"height":0.015961692},"value":"p","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.2549867,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Match Case","depth":3,"bounds":{"left":0.2649601,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Words","depth":3,"bounds":{"left":0.27360374,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Regex","depth":3,"bounds":{"left":0.28224733,"top":0.17877094,"width":0.00731383,"height":0.017557861},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Replace History","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextField","text":"Replace","depth":4,"role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"New Line","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCheckBox","text":"Preserve case","depth":3,"bounds":{"left":0.27027926,"top":1.0,"width":0.00731383,"height":0.0},"role_description":"checkbox","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"58/268","depth":4,"bounds":{"left":0.29587767,"top":0.17797287,"width":0.025598405,"height":0.017557861},"role_description":"text"},{"role":"AXButton","text":"Previous Occurrence","depth":4,"bounds":{"left":0.32147607,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Occurrence","depth":4,"bounds":{"left":0.33011967,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Filter Search Results","depth":4,"bounds":{"left":0.3387633,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open in Window, Multiple Cursors","depth":4,"bounds":{"left":0.34740692,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Click to highlight","depth":4,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close","depth":4,"bounds":{"left":0.61103725,"top":0.17717478,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.2386273,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.20830008,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.20670392,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.20670392,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"bounds":{"left":0.13863032,"top":0.0,"width":0.48537233,"height":1.0},"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-4669196238258731232
|
6686648885298238541
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Show Replace Field
Search History
p
New Line
Match Case
Words
Regex
Replace History
Replace
New Line
Preserve case
58/268
Previous Occurrence
Next Occurrence
Filter Search Results
Open in Window, Multiple Cursors
Click to highlight
Close
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
NULL
|
|
67709
|
1522
|
41
|
2026-04-21T15:56:24.954593+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786984954_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7906564822731502105
|
6686648885298246733
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67705
|
|
67708
|
1523
|
63
|
2026-04-21T15:56:22.903068+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786982903_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
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},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"bounds":{"left":0.13863032,"top":0.17158818,"width":0.48537233,"height":0.8284118},"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
7906564822731502105
|
6686648885298246733
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide...
|
67707
|
|
67697
|
1523
|
55
|
2026-04-21T15:55:42.784893+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786942784_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"}]...
|
-6356288144241488341
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class...
|
67694
|
|
67696
|
1522
|
37
|
2026-04-21T15:55:42.468941+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786942468_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class
SsoController.php, class
SubscriptionController.php, class
TeamAiAutomationController.php, class
TeamAiContextController.php, class
TeamController.php, final class
TeamInsightsController.php, cl...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NudgeController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NumberAllocatorController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationLicensesController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationMembersController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRetentionPolicyController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRolesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationSyncController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PartnerController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PhoneNumberController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaylistController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ScimController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SidekickController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SoftphoneController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SsoController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SubscriptionController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamAiAutomationController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamAiContextController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsightsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionController.php, class","depth":11,"role_description":"text"}]...
|
-192316015032099005
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class
SsoController.php, class
SubscriptionController.php, class
TeamAiAutomationController.php, class
TeamAiContextController.php, class
TeamController.php, final class
TeamInsightsController.php, cl...
|
67695
|
|
67695
|
1522
|
36
|
2026-04-21T15:55:40.458469+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786940458_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"}]...
|
-4136940034643599442
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class...
|
NULL
|
|
67694
|
1523
|
54
|
2026-04-21T15:55:40.361442+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786940361_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"}]...
|
1749935792393521419
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class...
|
NULL
|
|
67693
|
1522
|
35
|
2026-04-21T15:55:38.304868+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786938304_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NudgeController.php, final class","depth":11,"role_description":"text"}]...
|
-269543121915748748
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class...
|
67691
|
|
67692
|
1523
|
53
|
2026-04-21T15:55:38.210309+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786938210_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NudgeController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NumberAllocatorController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationLicensesController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationMembersController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRetentionPolicyController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRolesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationSyncController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PartnerController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PhoneNumberController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaylistController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ScimController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SidekickController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SoftphoneController.php, final class","depth":11,"role_description":"text"}]...
|
5718917043499434052
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class...
|
67690
|
|
67691
|
1522
|
34
|
2026-04-21T15:55:32.507105+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786932507_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NudgeController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NumberAllocatorController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationLicensesController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationMembersController.php, final class","depth":11,"role_description":"text"}]...
|
-108303676598441425
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class...
|
NULL
|
|
67690
|
1523
|
52
|
2026-04-21T15:55:32.405789+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786932405_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"}]...
|
-5515840085980694590
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php...
|
NULL
|
|
67689
|
1523
|
51
|
2026-04-21T15:55:30.561983+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786930561_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class
SsoController.php, class
SubscriptionController.php, class
TeamAiAutomationController.php, class
TeamAiContextController.php, class
TeamController.php, final class
TeamInsightsController.php, cl...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.6007314,"top":0.17478053,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.6097075,"top":0.17318435,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.61702126,"top":0.17318435,"width":0.006981383,"height":0.018355945},"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnySetEncryptedTokenManagerModeCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyTokenInfoCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MakeSlackLiveCoachingChatNotesOn.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ManageScimForTeam.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MarkBranchForEnvironmentPipelineCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"MuteOrganizerChannel.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PhpApm.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeConferences.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSoftDeletedOpportunitiesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PurgeSyncBatchesCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RecalculateDealRisksCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveDeleteMarkersCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveExpiredNudgesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RemoveUnusedParticipantSpeechesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ResetElasticSearch.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityCrmProviderIdCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"RestoreActivityTypeCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SeedActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"SyncActivity.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"TrackImported.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"WhichWorkerIsWorkingOnWhichJob.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Scheduling, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Kernel.php, class","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Contracts","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Domain","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"DTO","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Emails","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Enums","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Events","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Exceptions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"FFMpeg","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Formats","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Guards","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Helpers","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Http","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"AccessTokenProvider, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Controllers, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"API, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AiCallScoring, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AjReports, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Opportunity, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Page, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Scorecards, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Settings, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsights, folder","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Themes","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReports","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserAutomatedReportsController.php, class","depth":12,"role_description":"text"},{"role":"AXStaticText","text":"V2","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActionItemsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ActivityController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AiCrmNotesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"BaseController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ClientTokenController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CrmController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealLevelPromptsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DealRiskController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"InstantMeetingController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LanguageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LayoutManagementController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"LiveFeedController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MeetingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MessageController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MetadataController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MobileSettingsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"MomentController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NudgeController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"NumberAllocatorController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationLicensesController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationMembersController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRetentionPolicyController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationRolesController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"OrganizationSyncController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PartnerController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PhoneNumberController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"PlaylistController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"ScimController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SidekickController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SoftphoneController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SsoController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"SubscriptionController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamAiAutomationController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamAiContextController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TeamInsightsController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TranscriptionController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"TranslationController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"UserController.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"VocabularyController.php, final class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Auth","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CustomerApi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Internal","depth":10,"role_description":"text"}]...
|
-192316015032099005
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php
JiminnySetEncryptedTokenManagerModeCommand.php
JiminnyTokenInfoCommand.php
MakeSlackLiveCoachingChatNotesOn.php
ManageScimForTeam.php
MarkBranchForEnvironmentPipelineCommand.php
MuteOrganizerChannel.php
PhpApm.php
PropagateCoachingFeedbackCreatedAtToSectionFeedbacks.php
PurgeConferences.php
PurgeSoftDeletedOpportunitiesCommand.php
PurgeSyncBatchesCommand.php
RecalculateDealRisksCommand.php, class
RemoveDeleteMarkersCommand.php, class
RemoveExpiredNudgesCommand.php, class
RemoveUnusedParticipantSpeechesCommand.php, class
ResetElasticSearch.php, class
RestoreActivityCrmProviderIdCommand.php, class
RestoreActivityTypeCommand.php, class
SeedActivities.php, class
SyncActivity.php, class
TrackImported.php
UpdateActivitiesAverageScoreExcludingFeedbacksNotSetVisibleToAll.php
WhichWorkerIsWorkingOnWhichJob.php
Scheduling, folder
Kernel.php, class
Contracts
Domain
DTO
Emails
Enums
Events
Exceptions
FFMpeg
Formats
Guards
Helpers
Http
AccessTokenProvider, folder
Controllers, folder
API, folder
AiCallScoring, folder
AjReports, folder
DealInsights, folder
Opportunity, folder
Page, folder
Scorecards, folder
Settings, folder
TeamInsights, folder
Themes
UserAutomatedReports
UserAutomatedReportsController.php, class
V2
ActionItemsController.php, class
ActivityController.php, final class
AiCrmNotesController.php, class
BaseController.php, class
ClientTokenController.php, class
CrmController.php, class
DealLevelPromptsController.php, class
DealRiskController.php, class
InstantMeetingController.php, class
LanguageController.php, class
LayoutManagementController.php, class
LiveFeedController.php, final class
MeetingsController.php, class
MessageController.php, class
MetadataController.php, class
MobileSettingsController.php, class
MomentController.php, class
NudgeController.php, final class
NumberAllocatorController.php, final class
OrganizationLicensesController.php, final class
OrganizationMembersController.php, final class
OrganizationRetentionPolicyController.php, class
OrganizationRolesController.php, class
OrganizationSyncController.php, class
PartnerController.php, final class
PhoneNumberController.php, class
PlaybackController.php, final class
PlaylistController.php, final class
ScimController.php, final class
SidekickController.php, final class
SoftphoneController.php, final class
SsoController.php, class
SubscriptionController.php, class
TeamAiAutomationController.php, class
TeamAiContextController.php, class
TeamController.php, final class
TeamInsightsController.php, cl...
|
67686
|
|
67688
|
1522
|
33
|
2026-04-21T15:55:30.389739+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786930389_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Expand Selected","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Collapse All","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"}]...
|
5536146521055043138
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php...
|
67687
|
|
67687
|
1522
|
32
|
2026-04-21T15:55:25.972595+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786925972_m1.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8024675707176336186
|
587721162343778193
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp-zsh* Build full day activity...• *4|DOCKERO ₴1-zshworker-nudges:worker-nudges_00: started₴2-zshscreenpipe*What's next:Try Docker Debug for seamless, persistent debugging tools in any container or image + docker debug docker_lamp_1Learn moreat [URL_WITH_CREDENTIALS] ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ csfixdockerexec -it docker_lamp_1./vendor/bin/php-cs-fixer fix--config=.php-cs-fixer.dist.php -v --using-cache=no --diffPHP CS Fixer 3.87.1 Alexander by Fabien Potencier, Dariusz Ruminski and contributors.PHPruntime:8.3.30Running analysis on 7 cores with 10 files per process.Parallel runner is an experimental feature and may be unstable, use it at your own risk. Feedback highly appreciated!Loadedconfigdefault from-php-cs-fixer.dist.php".5609/5609100%• ₴5-zsh100% <7886Tue 21 Apr 18:55:26APP (-zsh)T₴1+Fixed 0 of 5609 files in 36.627 seconds, 60.00 MB memory usedWhat's next:Try Docker Debug for seamless, persistent debugging tools in any container or image → docker debug docker_lamp_1Learn more at [URL_WITH_CREDENTIALS] ~/jiminny/app (JY-18909-automated-reports-ask-jiminny) $ ||...
|
NULL
|
|
67686
|
1523
|
50
|
2026-04-21T15:55:25.891345+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-21/1776 /Users/lukas/.screenpipe/data/data/2026-04-21/1776786925891_m2.jpg...
|
PhpStorm
|
faVsco.js – web.php
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.025930852,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"#11894 on JY-18909-automated-reports-ask-jiminny, menu","depth":5,"bounds":{"left":0.064494684,"top":0.019952115,"width":0.12134308,"height":0.025538707},"help_text":"Pull request #11894 exists for current branch JY-18909-automated-reports-ask-jiminny","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8218085,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AutomatedReportsServiceTest","depth":6,"bounds":{"left":0.83710104,"top":0.019952115,"width":0.078457445,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AutomatedReportsServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"bounds":{"left":0.9381649,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"bounds":{"left":0.96609044,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"bounds":{"left":0.9773936,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"bounds":{"left":0.9886968,"top":0.019952115,"width":0.011303186,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Built-in Preview","depth":4,"bounds":{"left":0.5688165,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chrome","depth":4,"bounds":{"left":0.5774601,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Firefox","depth":4,"bounds":{"left":0.58610374,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Safari","depth":4,"bounds":{"left":0.59474736,"top":0.20510775,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","depth":4,"bounds":{"left":0.13863032,"top":0.17158818,"width":0.48537233,"height":0.8284118},"value":"<?php\n\ndeclare(strict_types=1);\n\nuse Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull;\nuse Illuminate\\Routing\\Router;\nuse Jiminny\\Contracts\\Acl\\PermissionEnum;\nuse Jiminny\\Http\\Controllers;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\ConversationsController;\nuse Jiminny\\Http\\Controllers\\API\\TeamInsights\\EngagementController;\nuse Jiminny\\Http\\Controllers\\Auth\\IntegrationController;\nuse Jiminny\\Http\\Controllers\\Auth\\LoginController;\nuse Jiminny\\Http\\Controllers\\Auth\\OnboardController;\nuse Jiminny\\Http\\Controllers\\Auth\\RegisterController;\nuse Jiminny\\Http\\Controllers\\Auth\\SocialController;\nuse Jiminny\\Http\\Controllers\\Auth\\SsoController;\nuse Jiminny\\Http\\Controllers\\ConferencesOptInOutController;\nuse Jiminny\\Http\\Controllers\\ExportController;\nuse Jiminny\\Http\\Controllers\\FrontendController;\nuse Jiminny\\Http\\Controllers\\GeocodingController;\nuse Jiminny\\Http\\Controllers\\Internal\\WebhookReceiver\\HubspotController;\nuse Jiminny\\Http\\Controllers\\Kiosk;\nuse Jiminny\\Http\\Controllers\\LiveCoachController;\nuse Jiminny\\Http\\Controllers\\MobileController;\nuse Jiminny\\Http\\Controllers\\PlaybackController;\nuse Jiminny\\Http\\Controllers\\PlaylistController;\nuse Jiminny\\Http\\Controllers\\Settings\\Profile;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\OrganizationSettingsController;\nuse Jiminny\\Http\\Controllers\\Settings\\Teams\\TeamPhotoController;\nuse Jiminny\\Http\\Controllers\\SupportController;\nuse Jiminny\\Http\\Controllers\\Telephony\\AudioController;\nuse Jiminny\\Http\\Middleware\\ConfigureLiveStreamAfterResponse;\nuse Jiminny\\Integrations\\RouteProviderList;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Models\\Feature\\FeatureEnum;\n\n/** @var Router $router */\n\n$router->get('/', [LoginController::class, 'showLoginForm']);\n\n// Legal documents...\n$router->get('/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301)); // BC\n$router->get('/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301)); // BC\n$router->get('/legal/privacy', static fn () => Redirect::to('https://jiminny.com/privacy-policy', 301))->name('privacy');\n$router->get('/legal/terms', static fn () => Redirect::to('https://jiminny.com/terms-and-conditions', 301))->name('terms');\n$router->get('/legal/cookies', static fn () => Redirect::to('https://jiminny.com/cookie-policy', 301))->name('cookies');\n\n// Customer Support...\n$router->post('/support/email', [SupportController::class, 'sendEmail']);\n\n// Extension Boot\n$router->get('/extension-install/success', [FrontendController::class, 'render']);\n\n$router->get('/mobile', [MobileController::class, 'show'])->name('mobile');\n\n// Authentication...\n$router->get('/login', [LoginController::class, 'showLoginForm'])->name('login');\n//$router->post('/login', 'Auth\\LoginController@login');\n$router->get('/logout', [LoginController::class, 'logout'])->name('logout');\n\n// Registration...\n$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');\n\n// Social Auth Callback.\n$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ])->name('socialAuth');\n\n$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getRedirectProviders(),\n ),\n ]);\n\n// Account has been locked during session.\n$router->get('/locked', [OnboardController::class, 'locked']);\n\n// Internal webhook receiver endpoint - receives forwarded webhooks from other instances\n$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])\n ->name('internal.webhook-receiver.hubspot');\n\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // Social Account connection.\n $router->get('/connect/{provider}', [OnboardController::class, 'connect'])\n ->name('social.auth.page')\n ->where([\n 'provider' => RouteProviderList::buildRouteOptionList(\n RouteProviderList::getConnectProviders(),\n ),\n ]);\n\n // Registration by Invitation.\n $router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');\n $router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);\n\n $router->group(['middleware' => 'validUser'], static function (Router $router): void {\n // Dashboard Home.\n $router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');\n $router->get('/team-insights', [FrontendController::class, 'render'])\n ->name('show.team-insights-page');\n\n $router->get('/team-insights/dashboard', [FrontendController::class, 'render'])\n ->name('show.team-insights.dashboard');\n $router->get('/team-insights/statistics', [FrontendController::class, 'render'])\n ->name('show.team-insights.statistics');\n $router->get('/team-insights/themes', [FrontendController::class, 'render'])\n ->name('show.team-insights.themes');\n $router->get('/team-insights/deals', [FrontendController::class, 'render'])\n ->name('show.team-insights.deals');\n $router->get('/team-insights/coaching', [FrontendController::class, 'render'])\n ->name('show.team-insights.coaching');\n $router->get('/team-insights/conversations', [FrontendController::class, 'render'])\n ->name('show.team-insights.conversations');\n $router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])\n ->name('team-insights.conversations.export');\n $router->get('/team-insights/engagement', [FrontendController::class, 'render'])\n ->name('team-insights.engagement');\n $router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])\n ->name('team-insights.engagement.export');\n\n $router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {\n $router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');\n $router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])\n ->name('deal-insights.open-deals');\n $router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-won');\n $router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])\n ->name('deal-insights.closed-lost');\n $router->get('/deal-insights/forecast', [FrontendController::class, 'render'])\n ->name('deal-insights.forecast');\n\n $router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])\n ->name('show.deal');\n });\n\n // OnDemand.\n $router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');\n\n // Playlists.\n $router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');\n\n // Sales Activity Playback.\n $router->get('/playback/{activity}', [PlaybackController::class, 'show'])\n ->name('activity.playback');\n\n // // AI Reports\n // $router->get('/ai-reports', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.show');\n //\n // $router->get('/ai-reports/manage', [\n // FrontendController::class, 'render',\n // ])\n // ->middleware(['can:canAccessAiReports,' . User::class])\n // ->name('ai.reports.manage');\n //\n // $router->get('/ai-reports/pdf/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.pdf.view');\n //\n // $router->get('/ai-reports/pdf/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.pdf.download');\n //\n // $router->get('/ai-reports/audio/{uuid}', [\n // Controllers\\UserAutomatedReportsController::class, 'view',\n // ])->name('ai-reports.audio.view');\n //\n // $router->get('/ai-reports/audio/{uuid}/download', [\n // Controllers\\UserAutomatedReportsController::class, 'download',\n // ])->name('ai-reports.audio.download');\n\n $router->group(\n ['middleware' => ['can:canAccessAiReports,' . User::class]],\n static function (Router $router): void {\n $router->get('/ai-reports', [FrontendController::class, 'render'])\n ->name('ai.reports.show');\n\n $router->get('/ai-reports/manage', [FrontendController::class, 'render'])\n ->name('ai.reports.manage');\n\n $router->get('/ai-reports/pdf/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.pdf.view');\n\n $router->get('/ai-reports/pdf/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.pdf.download');\n\n $router->get('/ai-reports/audio/{uuid}', [Controllers\\UserAutomatedReportsController::class, 'view'])\n ->name('ai-reports.audio.view');\n\n $router->get('/ai-reports/audio/{uuid}/download', [Controllers\\UserAutomatedReportsController::class, 'download'])\n ->name('ai-reports.audio.download');\n }\n );\n\n // Playback of audio streams.\n $router->get('/stream/{track}', [AudioController::class, 'streamTrack'])\n ->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')\n ->name('playback.audio.stream');\n\n // Generate dynamic playlist of audio/video streams.\n $router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');\n $router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');\n $router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');\n $router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');\n\n // User Settings\n $router->get('/settings', [Controllers\\Settings\\DashboardController::class, 'show'])->name('settings');\n $router->get('/settings/softphone', [Controllers\\Settings\\DashboardController::class, 'show']);\n $router->get('/settings/conference', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n $router->get('/settings/integrations', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('user-integrations');\n\n $router->get('/settings/recording', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware([\n 'permission:' . implode(\n '|',\n [\n PermissionEnum::RECORD_MEETING->value,\n PermissionEnum::DIAL->value,\n PermissionEnum::SMS->value,\n ],\n ),\n ])\n ->name('user.recording.show');\n\n $router->get('/settings/sidekick', [Controllers\\Settings\\DashboardController::class, 'show']);\n\n // Profile Photo.\n $router->post('/settings/photo', [Profile\\PhotoController::class, 'store'])->name('store.user.photo');\n\n // Conference Preferences.\n $router->put('/settings/conference', [Profile\\ConferenceController::class, 'update'])\n ->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)\n ->name('update.conference.settings');\n\n // Softphone Preferences.\n $router->post('/settings/softphone', [Profile\\SoftphoneController::class, 'store'])\n ->name('store.softphone.settings');\n\n $router->put('/settings/softphone/recordings', [\n Profile\\SoftphoneController::class,\n 'toggleRecordingPreferenceAction',\n ])->name('update.softphone.recordings');\n\n $router->post('/settings/softphone/verify', [Profile\\SoftphoneController::class, 'verify'])\n ->name('verify.softphone');\n\n // Sidekick\n $router->post('/settings/sidekick', [Profile\\SidekickController::class, 'store'])\n ->name('store.sidekick.settings');\n\n // Notifications.\n $router->post('/settings/notifications', [Profile\\NotificationController::class, 'store'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('store.notification.settings');\n\n $router->get('/settings/notifications', [Controllers\\Settings\\DashboardController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])\n ->name('show.notification.settings');\n\n $router->group(\n ['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],\n static function (Router $router): void {\n $router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])\n ->where(['provider' => 'slack'])\n ->name('slack.integration.redirect');\n },\n );\n\n //User Activity settings\n $router->post('/settings/activities', [Profile\\ActivityController::class, 'store'])\n ->name('store.activities.settings');\n\n $router->group(\n ['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],\n static function (Router $router): void {\n $router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])\n ->name('organization.dashboard');\n\n $router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])\n ->name('update.team.photo');\n },\n );\n\n $router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])\n ->name('organization.integrations');\n\n $router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])\n ->name('organization.team_activity');\n\n $router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])\n ->name('organization.team_recording');\n\n $router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])\n ->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])\n ->name('organization.sidekick');\n\n $router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])\n ->name('organization.crm_data');\n\n $router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.notifications');\n\n $router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.team_coaching');\n\n $router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])\n ->name('organization.playbooks');\n\n $router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])\n ->name('organization.groups');\n\n $router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])\n ->name('organization.members');\n\n $router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])\n ->name('organization.job_titles');\n\n $router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])\n ->name('organization.vocabulary');\n\n $router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])\n ->name('organization.topics');\n\n $router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])\n ->name('organization.autoscore');\n\n $router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_context');\n\n $router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])\n ->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])\n ->name('organization.ai_automation');\n\n // Internal Kiosk V2.\n $router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {\n $router->get('/kiosk', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.index');\n $router->get('/kiosk/onboard-list', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.onboard_list');\n $router->get('/kiosk/users', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.users');\n $router->get('/kiosk/automated-reports', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.automated_reports');\n $router->get('/kiosk/activities', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.activities');\n $router->get('/kiosk/mobile-version', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.mobile_version');\n $router->get('/kiosk/diarize-via-transcript', [Kiosk\\DashboardController::class, 'show'])\n ->name('kiosk.diarize_via_transcript');\n\n // Kiosk User Profiles...\n $router->get('/kiosk/users/{user}/profile', [Kiosk\\ProfileController::class, 'show']);\n\n // Kiosk Impersonation...\n $router->get('/kiosk/users/{user}/impersonate', [Kiosk\\ImpersonationController::class, 'impersonate']);\n });\n\n // Kiosk Re-Impersonation...\n $router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\\ImpersonationController::class, 'reImpersonate']);\n\n $router->get('/kiosk/users/stop-impersonating', [Kiosk\\ImpersonationController::class, 'stopImpersonating']);\n });\n\n // Live coach\n $router->get('/live/{activity}', [LiveCoachController::class, 'show'])\n ->middleware(ConfigureLiveStreamAfterResponse::class)\n ->name('show.live-coach.activity');\n});\n\n$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {\n // SSO Login Success\n $router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');\n});\n\n$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {\n $router->get('/softphone/{activity}/coach', [Controllers\\Telephony\\Voice\\SoftPhoneController::class, 'coach'])\n ->name('softphone.coach.join');\n});\n\n// Geocoding...\n$router->get('/geocode/country', [GeocodingController::class, 'country']);\n$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);\n\n// Export audio & video portal.\n$router->get('export/{token}', [ExportController::class, 'view'])->name('export');\n$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');\n$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);\n\n// Conferences opt in and out controls\n$router->get(\n 'conferences/{participant}/opt-out-recording',\n [ConferencesOptInOutController::class, 'optOutRecording'],\n)->name('conference.opt-out');\n\n$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])\n ->name('conference.opt-in');\n\n$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])\n ->name('conference.obtain-consent');\n\n// Stream audio nicely.\n$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Execute","depth":4,"bounds":{"left":0.6256649,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Explain Plan","depth":4,"bounds":{"left":0.6343085,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Browse Query History","depth":4,"bounds":{"left":0.6452792,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"View Parameters","depth":4,"bounds":{"left":0.65392286,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Open Query Execution Settings…","depth":4,"bounds":{"left":0.6625665,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"In-Editor Results","depth":4,"bounds":{"left":0.67353725,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tx: Auto","depth":4,"bounds":{"left":0.68450797,"top":0.074221864,"width":0.024268618,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cancel Running Statements","depth":4,"bounds":{"left":0.71110374,"top":0.074221864,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Playground","depth":4,"bounds":{"left":0.72207445,"top":0.074221864,"width":0.029587766,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"jiminny","depth":4,"bounds":{"left":0.9587766,"top":0.074221864,"width":0.02825798,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"19","depth":4,"bounds":{"left":0.93982714,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"17","depth":4,"bounds":{"left":0.95146275,"top":0.09896249,"width":0.00930851,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"13","depth":4,"bounds":{"left":0.96276593,"top":0.09896249,"width":0.009640957,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.9740692,"top":0.09736632,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.98138297,"top":0.09736632,"width":0.006981383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","depth":4,"value":"SELECT * FROM teams WHERE id = 1;\n\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;\nSELECT * FROM crm_fields WHERE id = 2234;\nSELECT * FROM crm_field_values WHERE crm_field_id = 2234;\n\nselect * from crm_profiles where user_id = 143;\n\nselect * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO\nselect * from business_processes where crm_configuration_id = 39;\n# 01941000000H669AAC, 01941000000H66JAAS\n\nselect * from record_type_field_values\n where record_type_id IN (24);\n\nselect * from crm_field_values where id IN (2730);\n\nselect * from crm_configurations where id = 39;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce'; #1035\n\n\nselect * from users where team_id = 1; # 222 group 3\nSELECT * FROM activities WHERE user_id = 222 order by id desc;\nselect * from sidekick_settings where team_id = 1;\nselect * from teams where id = 1;\nselect * from team_features where team_id = 1;\n\nselect * from activities where crm_configuration_id = 2\nand provider = 'ms-teams' and id = 608765;\n\nSELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';\n\nselect * from sidekick_settings where team_id = 2;\n\nSELECT * FROM activities WHERE id = 608660;\nselect * from activity_summary_logs where activity_id = 608660;\nselect * from ai_prompts where transcription_id = 11214;\n\n# ********************************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;\n# id: 608818, crm: 59628809737\nSELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;\n# id: 608821, crm: 59632069252\nSELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,\nplaybook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,\nscheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at\nFROM activities a\njoin calendar_events ce on a.calendar_event_id = ce.id\nWHERE a.id IN (608818, 608821);\n\nselect * from users where team_id = 1;\nselect * from team_settings where team_id = 1;\nselect * from crm_profiles where crm_configuration_id = 39 order by user_id;\n\nselect * from team_features where team_id = 1;\n\nselect * from users where team_id = 2;\n\nSELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639\n# Preslava N. Ivanova, grou id 3\n\nSELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;\n\nselect * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';\n\nselect\n a.id,\n a.type,\n a.scheduled_start_time,\n a.actual_start_time,\n a.created_at,\n a.opportunity_id,\n a.status\nFROM activities a\nWHERE opportunity_id = 344\nand status IN ('completed', 'received', 'delivered')\nand (\n (a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')\nOR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))\n;\n\nSELECT * FROM users WHERE id = 222;\n\nSELECT * FROM crm_profiles WHERE user_id = 222;\nselect * from crm_layouts where crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;\n\nselect * from group_deal_risk_types;\n\nselect * from opportunities where team_id = 1;\n\nSELECT * FROM opportunities WHERE id = 315;\nSELECT * FROM crm_field_data WHERE object_id = 315;\nselect * from crm_field_data where object_id = 260;\n\nselect * from generic_ai_prompts where subject_id = 315;\n\nselect * from teams; # 36, 21, 121, james.graham@bullhorn.jiminny.com\nSELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';\n\n# ************************************************************************************\nselect * from teams where id = 1;\nselect * from crm_configurations where id = 39;\nselect * from users where team_id = 1;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 1;\n# 1 - 00541000004281rAAA\n# 204 - 0052g000003freeAAA\n# 429 - 0052g000003qGOiAAM\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\nselect * from activities where type = 'softphone'\nand created_at > '2024-12-11 15:24:36' order by id desc;\n\nselect * from activity_providers where team_id = 1;\nselect * from activity_provider_users where activity_provider_id = 328;\n\nselect * from opportunities where crm_configuration_id = 39\nAND account_id = 178 AND is_closed = false\norder by created_at DESC;\n\nselect * from contacts where id = 3952;\nselect * from accounts where id = 178;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations where id = 21;\nselect * from users where team_id = 36;\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 36;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 36\nand sa.provider = 'bullhorn';\n\nselect * from social_accounts where id = 348;\nUPDATE social_accounts SET\nprovider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',\nprovider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',\nexpires = 1733998131,\nstate = 'connected'\nWHERE id = 348;\n\n# ************************************************************************************\nselect * from teams where id = 31;\nselect * from crm_configurations where id = 18;\n\nselect * from users where team_id = 31; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 31;\n\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 31\nand sa.provider = 'close';\n\nselect * from contacts where crm_configuration_id = 18;\n\n# ********************** NEPTUNE **************************************************************\nselect * from teams;\nselect * from users where id IN (1030, 1035, 1052);\nselect * from crm_configurations;\n\nselect * from users where team_id = 65; # 257\nselect * from team_settings where team_id = 65; # 257\nselect * from invitations where team_id = 65; # 257\nselect * from users where email = 'integration-account@jiminny.com'; # 257\nselect u.email, cp.* from users u\njoin crm_profiles cp on u.id = cp.user_id\nwhere u.team_id = 65;\n\nselect * from crm_configurations where id = 53;\nselect * from accounts where crm_configuration_id = 53 order by id desc;\nselect * from leads where crm_configuration_id = 53 order by id desc;\nselect * from contacts where crm_configuration_id = 53 order by id desc;\nselect * from opportunities where crm_configuration_id = 53 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 53 order by id desc;\nselect * from crm_fields where crm_configuration_id = 53 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 53 order by id desc;\nselect * from stages where crm_configuration_id = 53 order by id desc;\n\n\nselect * from crm_profiles where crm_configuration_id = 13;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\nand sa.provider = 'integration-app';\n\nselect * from contacts where crm_configuration_id = 13;\n\nselect * from social_accounts where sociable_id = 283;\n\nSELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';\n\nselect * from activity_providers where team_id = 65;\nSELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 65\n;\n\n# ***************************** STAGING ********************************************\nSELECT * FROM teams;\nSELECT * FROM teams WHERE id = 88;\nSELECT * FROM teams WHERE id = 89;\nselect * from team_settings where team_id = 89;\nSELECT * FROM users WHERE team_id = 89;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 89;\n\nselect * from users;\nSELECT * FROM social_accounts WHERE sociable_id = 1761;\nSELECT * FROM crm_configurations WHERE id = 70;\nselect * from accounts where crm_configuration_id = 70 order by id desc;\nselect * from leads where crm_configuration_id = 70 order by id desc;\nselect * from contacts where crm_configuration_id = 70 order by id desc;\nselect * from opportunities where crm_configuration_id = 70 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 70 order by id desc;\nselect * from crm_fields where crm_configuration_id = 70 order by id desc;\nselect * from crm_field_values where crm_field_id = 3536 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 70 order by id desc;\nselect * from stages where crm_configuration_id = 70 order by id desc;\nselect * from business_processes where crm_configuration_id = 70 order by id desc;\nselect * from business_process_stages where business_process_id = 34;\n\nselect * from contacts where id = 10468;\n\nselect * from crm_layouts where crm_configuration_id = 70;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;\nSELECT * FROM crm_fields WHERE id IN (3533,3534,3535);\n\nselect * from activities where crm_configuration_id = 70\nand (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;\n\nSELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;\nSELECT * FROM activities where crm_configuration_id = 69 ;\n\nSELECT * FROM users WHERE email LIKE '%jiminny_web_sa2@jiminny.com%';\nSELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;\nSELECT * FROM opportunities WHERE id = 385;\n\nselect * from participants p\njoin activities a on p.activity_id = a.id\nwhere a.crm_configuration_id = 70\nand (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);\nSELECT * FROM participants WHERE id = 1013638;\n\nselect * from teams where id = 90;\nselect * from users where team_id = 90;\nselect * from social_accounts where social_accounts.sociable_id IN (1960,1760);\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 71;\nselect * from invitations where team_id = 90;\n\nselect * from crm_configurations where id = 71;\nselect * from accounts where crm_configuration_id = 71 order by id desc;\nselect * from leads where crm_configuration_id = 71 order by id desc;\nselect * from contacts where crm_configuration_id = 71 order by id desc;\nselect * from opportunities where crm_configuration_id = 71 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 71 order by id desc;\nselect * from crm_fields where crm_configuration_id = 71 order by id desc;\nselect * from crm_field_values where crm_field_id = 3341 order by id desc;\nselect * from crm_layouts where crm_configuration_id = 71 order by id desc;\nselect * from stages where crm_configuration_id = 71 order by id desc;\n\nselect * from users order by secondary_email desc;\nselect u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa\n join users u on sa.sociable_id = u.id\nwhere sa.provider = 'google' and u.email LIKE 'aneliya%';\n\nselect * from failed_jobs order by id desc;\n\nselect * from users where email = 'ben.allwright@learningpeople.co.uk' or secondary_email = 'ben.allwright@learningpeople.co.uk';\n\nselect * from teams;\nSELECT * FROM crm_profiles WHERE crm_configuration_id = 39;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 1\nand sa.provider = 'salesforce';\n\n# ************************************************************************************\nSELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;\nSELECT * FROM crm_configurations WHERE id = 70;\n\nselect * from teams where id = 1;\nselect * from groups where team_id = 1;\nselect * from users where team_id = 1;\n\nselect o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o\njoin users u on o.user_id = u.id\njoin groups g on u.group_id = g.id\njoin role_user ru on u.id = ru.user_id\njoin roles r on ru.role_id = r.id\nwhere o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';\n\nselect * from role_user where user_id = 143;\nselect * from roles;\n\nselect * from role_user;\nselect * from groups where id = 9;\nselect * from scope_groups where group_id = 9;\n\n# ************************************************************************************\nselect * from teams where id = 36;\nselect * from crm_configurations;\nSELECT * FROM social_accounts WHERE sociable_id = 121;\n\nhttps://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105\nhttps://crmsandbox.zoho.com/crm/\n\nhttps://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080\n https://crm.zoho.com/crm/\n org3469620\n\nSELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;\n\nselect * from users where email LIKE \"%mobile_automation_%\";\nselect * from social_accounts where sociable_id IN (2228);\nselect * from crm_profiles where user_id IN (2222,2223,2226,2227);\n\nselect * from teams order by id desc;\nSELECT * FROM users WHERE id = 2229;\nSELECT * FROM crm_profiles WHERE user_id = 2229;\nselect * from opportunities where crm_configuration_id = 88;\nselect * from crm_fields where crm_configuration_id = 88;\nselect * from crm_profiles where crm_configuration_id = 88;\n\nSELECT * FROM teams WHERE id = 1;\n\nSELECT * FROM users WHERE id = 143;\nSELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;\n\nhttps://app.staging.jiminny.com/ondemand?\n min_duration=1\n &\n only_recorded=1\n &\n user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e\n &\n sequence_number=2\n\n select * from users where team_id = 1 and email like '%stoyan%'\n\nselect * from coaching_feedbacks;\n\nselect * from teams;\nSELECT * FROM users WHERE team_id = 36;\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from users where id = 143;\n\nSELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\nSELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;\n\nselect * from users where team_id = 2;\nselect * from activities where crm_configuration_id = 39\nand activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'\nAND user_id = 143\norder by id desc;\n\n# ************************************************************************************\nselect * from teams where id = 142; # 2312, 126\nselect * from team_settings;\nselect * from users where team_id = 142; # 21642\nSELECT * FROM social_accounts WHERE sociable_id = 21642;\nSELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;\nselect * from crm_profiles where id IN (93);\nselect * from invitations;\nselect * from team_features where team_id = 1;\n\nSELECT * FROM crm_configurations WHERE id = 126;\nselect * from accounts where crm_configuration_id = 126 order by id desc;\nselect * from leads where crm_configuration_id = 126 order by id desc;\nselect * from contacts where crm_configuration_id = 126 order by id desc;\nselect * from opportunities where crm_configuration_id = 126 order by id desc;\nselect * from crm_profiles where crm_configuration_id = 126 order by id desc;\nselect * from crm_fields where crm_configuration_id = 126 # 11060\n# and type IN ('picklist', 'status')\n# and object_type = 'task'\norder by id desc;\n# 5731,5732,5733\nselect DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;\nselect * from crm_layouts where crm_configuration_id = 126 order by id desc;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);\nselect * from stages where crm_configuration_id = 126 order by id desc;\nselect * from business_processes where crm_configuration_id = 126 order by id desc;\nselect * from business_process_stages where business_process_id IN (76,75,74,73);\nselect * from playbooks where team_id = 142;\nselect * from playbook_layouts where playbook_id IN (108);\nSELECT * FROM playbook_categories WHERE playbook_id IN (108);\n\nselect * from teams where id = 130;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 2\nand sa.provider = 'hubspot';\n\nSELECT * FROM activities\n WHERE crm_configuration_id = 110;\n\nselect * from teams;\nselect * from crm_configurations;\n\nSELECT * FROM activities WHERE id = 628773;\nSELECT * FROM crm_profiles WHERE user_id = 1460;\nSELECT * FROM social_accounts WHERE sociable_id = 2291;\n\nselect * from teams;\nselect ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id\njoin permission_role pr on pr.role_id = ru.role_id\n join permissions p on p.id = pr.permission_id\nwhere team_id = 495 and p.name IN ('dial');\n\nselect * from teams where id = 145;\nselect * from crm_configurations where id = 129;\nselect * from social_accounts where sociable_id = 2317;\nSELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;\n\nselect * from teams where id = 1;\nSELECT * FROM crm_layouts WHERE crm_configuration_id = 39;\nSELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;\nSELECT * FROM crm_layout_entities WHERE id = 5507;\nSELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');\n\nselect * from teams;\nselect * from activities where crm_configuration_id = 14;\n\nSELECT * FROM social_accounts where provider = 'copper';\n\nselect * from activities where id = 628467;\nselect * from participants where activity_id = 628467;\n\nSELECT * FROM contacts WHERE id = 3969;\nSELECT * FROM accounts WHERE id = 177;\n\nSELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;\n\n# ********************* BH\nselect * from teams where id = 36;\nSELECT * FROM crm_configurations WHERE id = 21;\nselect * from activities where crm_configuration_id = 21 and id = 607901;\nselect * from activities where crm_configuration_id = 21;\n\nselect * roles;\nselect * from permissions;\nselect * from permission_role where permission_id = 226;\n\nselect * from migrations order by id desc;\n\n# mercury\n# neptune\n# earth\n\nselect * from teams;\nselect * from teams where id = 19;\nselect * from teams where id = 27;\nselect * from users where team_id = 27;\nSELECT * FROM crm_configurations WHERE id = 42;\n\nselect * from social_accounts sa\njoin users u on sa.sociable_id = u.id\nwhere u.team_id = 19\nand sa.provider = 'pipedrive';\n\nselect * from activities where id = 631461;\nSELECT * FROM crm_field_values WHERE crm_field_id = 180;\n\nselect * from teams where id = 2;\nSELECT * FROM social_accounts WHERE sociable_id = 89;\n\nSELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273\nselect * from activity_summary_logs where activity_id = 634273;\n\nselect * from sidekick_settings where team_id = 2;\n\nselect * from teams; # 2, 2\nSELECT * FROM crm_configurations WHERE team_id = 2; # 2\nselect * from team_features where team_id = 2;\nselect * from features;\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';\nSELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;\n\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from users where team_id = 1 and id IN (7160, 3248);\nselect * from migrations order by id desc;\n\nSELECT\n CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,\n u.email,\n sa.*,\n t.owner_id FROM social_accounts sa\nJOIN users u on u.id = sa.sociable_id\nJOIN teams t on t.id = u.team_id\nWHERE u.team_id = 1 and sa.provider = 'salesforce';\n\nselect * from teams where id = 1;\nselect * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;\nselect * from groups where id = 565;\nselect * from playbooks where team_id = 1;\nselect * from playbooks where id = 175;\nselect * from playbook_categories where playbook_id = 175;\nselect * from users where team_id = 1;\nselect * from users where id = 7160;\nselect * from crm_profiles where user_id = 7160;\nselect * from features;\nselect\n *\n# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,\n# crm_configuration_id, crm_provider_id, transcription_id, status\nfrom activities where crm_configuration_id = 1 and type = 'conference'\n# and crm_provider_id IS NOT NULL\nand provider != 'uploader' and actual_start_time IS NOT NULL\nORDER by id desc;\nselect * from activities where id = 54747783; # 00UO400000pCzojMAC\n\nselect p.id, p.activity_type, pc.id, pc.name\nFROM playbooks p\njoin playbook_categories pc on p.id = pc.playbook_id\nwhere p.team_id = 1 and p.activity_type = 'event';\n\nSELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';\nSELECT * FROM crm_field_values WHERE crm_field_id = 4;\n\nselect * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id\nwhere crm_configuration_id = 1 and pl.playbook_id = 175;\n\nselect * from teams;\nSELECT r.* FROM automated_reports r\njoin teams t on r.team_id = t.id\nWHERE r.frequency = 'daily'\n and r.status = 1\nAND t.status = 'active'\nAND (r.expires_at >= now() OR r.expires_at IS NULL);\n\nselect * from automated_report_results where report_id IN (18, 33);\n\nselect * from activity_searches where id = 10932;\nselect * from activity_search_filters where activity_search_id = 10932;\nselect * from automated_reports order by id desc;\nselect * from automated_report_results order by id desc;\nselect * from automated_report_results where report_id IN (37);\nselect * from users where id IN (7160, 3248);\nselect * from users where group_id IN (3710);\n\nSELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;\nSELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Project","depth":3,"role_description":"text"},{"role":"AXButton","text":"Project","depth":3,"bounds":{"left":0.011968086,"top":0.047885075,"width":0.024268618,"height":0.024740623},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New File or Directory…","depth":4,"bounds":{"left":0.06715426,"top":0.05027933,"width":0.008643617,"height":0.01915403},"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.078125,"top":0.05027933,"width":0.008643617,"height":0.01915403},"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.08676862,"top":0.05027933,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Options","depth":4,"bounds":{"left":0.09541223,"top":0.05027933,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.10405585,"top":0.05027933,"width":0.008643617,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app ~/jiminny/app","depth":6,"role_description":"text"},{"role":"AXStaticText","text":".circleci","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".cursor","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".github","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".sonarlint","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".vscode","depth":7,"role_description":"text"},{"role":"AXStaticText","text":".windsurf","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"app, sources root","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Actions","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Component","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Configuration","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Console","depth":8,"role_description":"text"},{"role":"AXStaticText","text":"Commands, folder","depth":9,"role_description":"text"},{"role":"AXStaticText","text":"Activities, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Analytics","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Calendars","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Crm","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DealInsights","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dev","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Dialers","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DTOs","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Elasticsearch","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStats","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GeckoExport","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Livestream","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Mailboxes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Migrate","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"PlaybackThemes","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playbooks","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Playlists","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Postmark","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ProphetAi","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Reports","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsRetentionPolicyCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"AutomatedReportsSendCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"CreateMockAskJiminnyReportResultCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"DeleteReportCommand.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"GenerateMarketingReport.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Team.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Usage.php, class","depth":11,"role_description":"text"},{"role":"AXStaticText","text":"Slack","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Teams","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Tracks, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Transcription, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Twilio, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Users, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Vocabulary, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Zoom, folder","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CoachingFeedbacksUpdateEsActivities.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"Command.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"CreateDatabaseUsers.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DatabaseTableCount.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteOldAiCrmNotesCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DeleteS3LeftoversCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DevPostmanCommand.php, final class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"DiarizeViaAiParticipantIdentificationCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EncryptTokensCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"EngagementStatsRegenerateCommand.php, class","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FeatureFlagsHelper.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FixCrossTenantIssues.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"FlushRolesPermissionsCache.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GenerateInternalWebhookToken.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"GroupSetDefaultLanguageCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HelperTruncateCoachingTables.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotJournalPollingCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"HubspotWebhookServiceCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportRecording.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"ImportUsersFromCsvFile.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"IterateUsersCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyCacheClearCommand.php","depth":10,"role_description":"text"},{"role":"AXStaticText","text":"JiminnyDebugCommand.php","depth":10,"role_description":"text"}]...
|
7609248729205091247
|
6686367410321527885
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
#11894 on JY-18909-automa Project: faVsco.js, menu
#11894 on JY-18909-automated-reports-ask-jiminny, menu
Start Listening for PHP Debug Connections
AutomatedReportsServiceTest
Run 'AutomatedReportsServiceTest'
Debug 'AutomatedReportsServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Built-in Preview
Chrome
Firefox
Safari
Sync Changes
Hide This Notification
Code changed:
Hide
<?php
declare(strict_types=1);
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
use Illuminate\Routing\Router;
use Jiminny\Contracts\Acl\PermissionEnum;
use Jiminny\Http\Controllers;
use Jiminny\Http\Controllers\API\TeamInsights\ConversationsController;
use Jiminny\Http\Controllers\API\TeamInsights\EngagementController;
use Jiminny\Http\Controllers\Auth\IntegrationController;
use Jiminny\Http\Controllers\Auth\LoginController;
use Jiminny\Http\Controllers\Auth\OnboardController;
use Jiminny\Http\Controllers\Auth\RegisterController;
use Jiminny\Http\Controllers\Auth\SocialController;
use Jiminny\Http\Controllers\Auth\SsoController;
use Jiminny\Http\Controllers\ConferencesOptInOutController;
use Jiminny\Http\Controllers\ExportController;
use Jiminny\Http\Controllers\FrontendController;
use Jiminny\Http\Controllers\GeocodingController;
use Jiminny\Http\Controllers\Internal\WebhookReceiver\HubspotController;
use Jiminny\Http\Controllers\Kiosk;
use Jiminny\Http\Controllers\LiveCoachController;
use Jiminny\Http\Controllers\MobileController;
use Jiminny\Http\Controllers\PlaybackController;
use Jiminny\Http\Controllers\PlaylistController;
use Jiminny\Http\Controllers\Settings\Profile;
use Jiminny\Http\Controllers\Settings\Teams\OrganizationSettingsController;
use Jiminny\Http\Controllers\Settings\Teams\TeamPhotoController;
use Jiminny\Http\Controllers\SupportController;
use Jiminny\Http\Controllers\Telephony\AudioController;
use Jiminny\Http\Middleware\ConfigureLiveStreamAfterResponse;
use Jiminny\Integrations\RouteProviderList;
use Jiminny\Models\User;
use Jiminny\Models\Feature\FeatureEnum;
/** @var Router $router */
$router->get('/', [LoginController::class, 'showLoginForm']);
// Legal documents...
$router->get('/terms', static fn () => Redirect::to('[URL_WITH_CREDENTIALS]
$router->get('/logout', [LoginController::class, 'logout'])->name('logout');
// Registration...
$router->get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register');
// Social Auth Callback.
$router->get('/auth/redirect/{provider}', [SocialController::class, 'redirect'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
])->name('socialAuth');
$router->get('/auth/callback/{provider}', [SocialController::class, 'callback'])
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getRedirectProviders(),
),
]);
// Account has been locked during session.
$router->get('/locked', [OnboardController::class, 'locked']);
// Internal webhook receiver endpoint - receives forwarded webhooks from other instances
$router->post('/internal/webhook-receiver/hubspot', [HubspotController::class, 'handleEvent'])
->name('internal.webhook-receiver.hubspot');
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// Social Account connection.
$router->get('/connect/{provider}', [OnboardController::class, 'connect'])
->name('social.auth.page')
->where([
'provider' => RouteProviderList::buildRouteOptionList(
RouteProviderList::getConnectProviders(),
),
]);
// Registration by Invitation.
$router->get('onboard', [OnboardController::class, 'show'])->name('show.onboard.page');
$router->post('onboard', [OnboardController::class, 'update'])->name('update.user.profile')->middleware(ConvertEmptyStringsToNull::class);
$router->group(['middleware' => 'validUser'], static function (Router $router): void {
// Dashboard Home.
$router->get('/dashboard', [FrontendController::class, 'render'])->name('dashboard');
$router->get('/team-insights', [FrontendController::class, 'render'])
->name('show.team-insights-page');
$router->get('/team-insights/dashboard', [FrontendController::class, 'render'])
->name('show.team-insights.dashboard');
$router->get('/team-insights/statistics', [FrontendController::class, 'render'])
->name('show.team-insights.statistics');
$router->get('/team-insights/themes', [FrontendController::class, 'render'])
->name('show.team-insights.themes');
$router->get('/team-insights/deals', [FrontendController::class, 'render'])
->name('show.team-insights.deals');
$router->get('/team-insights/coaching', [FrontendController::class, 'render'])
->name('show.team-insights.coaching');
$router->get('/team-insights/conversations', [FrontendController::class, 'render'])
->name('show.team-insights.conversations');
$router->get('/team-insights/conversations/export', [ConversationsController::class, 'export'])
->name('team-insights.conversations.export');
$router->get('/team-insights/engagement', [FrontendController::class, 'render'])
->name('team-insights.engagement');
$router->get('/team-insights/engagement/export/{exportType}', [EngagementController::class, 'export'])
->name('team-insights.engagement.export');
$router->group(['middleware' => 'can:openDealInsights,' . User::class], static function (Router $router): void {
$router->get('/deal-insights/', [FrontendController::class, 'render'])->name('deal-insights.home');
$router->get('/deal-insights/open-deals', [FrontendController::class, 'render'])
->name('deal-insights.open-deals');
$router->get('/deal-insights/closed-won', [FrontendController::class, 'render'])
->name('deal-insights.closed-won');
$router->get('/deal-insights/closed-lost', [FrontendController::class, 'render'])
->name('deal-insights.closed-lost');
$router->get('/deal-insights/forecast', [FrontendController::class, 'render'])
->name('deal-insights.forecast');
$router->get('deal-insights/deal/{uuid}/{tab}', [FrontendController::class, 'renderOpportunityTab'])
->name('show.deal');
});
// OnDemand.
$router->get('/ondemand', [FrontendController::class, 'render'])->name('show.ondemand.page');
// Playlists.
$router->get('/playlists', [PlaylistController::class, 'show'])->name('show.playlist.page');
// Sales Activity Playback.
$router->get('/playback/{activity}', [PlaybackController::class, 'show'])
->name('activity.playback');
// // AI Reports
// $router->get('/ai-reports', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.show');
//
// $router->get('/ai-reports/manage', [
// FrontendController::class, 'render',
// ])
// ->middleware(['can:canAccessAiReports,' . User::class])
// ->name('ai.reports.manage');
//
// $router->get('/ai-reports/pdf/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.pdf.view');
//
// $router->get('/ai-reports/pdf/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.pdf.download');
//
// $router->get('/ai-reports/audio/{uuid}', [
// Controllers\UserAutomatedReportsController::class, 'view',
// ])->name('ai-reports.audio.view');
//
// $router->get('/ai-reports/audio/{uuid}/download', [
// Controllers\UserAutomatedReportsController::class, 'download',
// ])->name('ai-reports.audio.download');
$router->group(
['middleware' => ['can:canAccessAiReports,' . User::class]],
static function (Router $router): void {
$router->get('/ai-reports', [FrontendController::class, 'render'])
->name('ai.reports.show');
$router->get('/ai-reports/manage', [FrontendController::class, 'render'])
->name('ai.reports.manage');
$router->get('/ai-reports/pdf/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.pdf.view');
$router->get('/ai-reports/pdf/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.pdf.download');
$router->get('/ai-reports/audio/{uuid}', [Controllers\UserAutomatedReportsController::class, 'view'])
->name('ai-reports.audio.view');
$router->get('/ai-reports/audio/{uuid}/download', [Controllers\UserAutomatedReportsController::class, 'download'])
->name('ai-reports.audio.download');
}
);
// Playback of audio streams.
$router->get('/stream/{track}', [AudioController::class, 'streamTrack'])
->where('track', '^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$')
->name('playback.audio.stream');
// Generate dynamic playlist of audio/video streams.
$router->get('/playlist/{activity}.m3u8', [PlaybackController::class, 'playlist'])->name('playlist');
$router->get('/playlist/{activity}.vtt', [PlaybackController::class, 'vtt'])->name('vtt');
$router->get('/media/{track}.m3u8', [PlaybackController::class, 'media'])->name('media');
$router->get('/download/{activity}', [PlaybackController::class, 'download'])->name('download');
// User Settings
$router->get('/settings', [Controllers\Settings\DashboardController::class, 'show'])->name('settings');
$router->get('/settings/softphone', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/conference', [Controllers\Settings\DashboardController::class, 'show']);
$router->get('/settings/integrations', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('user-integrations');
$router->get('/settings/recording', [Controllers\Settings\DashboardController::class, 'show'])
->middleware([
'permission:' . implode(
'|',
[
PermissionEnum::RECORD_MEETING->value,
PermissionEnum::DIAL->value,
PermissionEnum::SMS->value,
],
),
])
->name('user.recording.show');
$router->get('/settings/sidekick', [Controllers\Settings\DashboardController::class, 'show']);
// Profile Photo.
$router->post('/settings/photo', [Profile\PhotoController::class, 'store'])->name('store.user.photo');
// Conference Preferences.
$router->put('/settings/conference', [Profile\ConferenceController::class, 'update'])
->middleware('permission:' . PermissionEnum::RECORD_MEETING->value)
->name('update.conference.settings');
// Softphone Preferences.
$router->post('/settings/softphone', [Profile\SoftphoneController::class, 'store'])
->name('store.softphone.settings');
$router->put('/settings/softphone/recordings', [
Profile\SoftphoneController::class,
'toggleRecordingPreferenceAction',
])->name('update.softphone.recordings');
$router->post('/settings/softphone/verify', [Profile\SoftphoneController::class, 'verify'])
->name('verify.softphone');
// Sidekick
$router->post('/settings/sidekick', [Profile\SidekickController::class, 'store'])
->name('store.sidekick.settings');
// Notifications.
$router->post('/settings/notifications', [Profile\NotificationController::class, 'store'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('store.notification.settings');
$router->get('/settings/notifications', [Controllers\Settings\DashboardController::class, 'show'])
->middleware(['permission:' . PermissionEnum::RECORD_MEETING->value])
->name('show.notification.settings');
$router->group(
['middleware' => 'permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value],
static function (Router $router): void {
$router->get('/settings/integration/redirect/{provider}', [IntegrationController::class, 'redirect'])
->where(['provider' => 'slack'])
->name('slack.integration.redirect');
},
);
//User Activity settings
$router->post('/settings/activities', [Profile\ActivityController::class, 'store'])
->name('store.activities.settings');
$router->group(
['middleware' => ['permission:' . PermissionEnum::MANAGE_ORGANIZATION_SETTINGS->value]],
static function (Router $router): void {
$router->get('/settings/organization', [OrganizationSettingsController::class, 'show'])
->name('organization.dashboard');
$router->post('/settings/organization/{team}/photo', [TeamPhotoController::class, 'update'])
->name('update.team.photo');
},
);
$router->get('/settings/organization/integrations', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_INTEGRATIONS->value])
->name('organization.integrations');
$router->get('/settings/organization/team-activity', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACTIVITY->value])
->name('organization.team_activity');
$router->get('/settings/organization/team-recording', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_RECORDING->value])
->name('organization.team_recording');
$router->get('/settings/organization/sidekick', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SIDEKICK->value])
->middleware(['feature:' . FeatureEnum::SIDEKICK_SETTINGS->name])
->name('organization.sidekick');
$router->get('/settings/organization/deal-insights', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_CRM_DATA->value])
->name('organization.crm_data');
$router->get('/settings/organization/notifications', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.notifications');
$router->get('/settings/organization/team-coaching-settings', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.team_coaching');
$router->get('/settings/organization/playbooks', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_PLAYBOOKS->value])
->name('organization.playbooks');
$router->get('/settings/organization/groups', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TEAM->value])
->name('organization.groups');
$router->get('/settings/organization/members', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_USERS->value])
->name('organization.members');
$router->get('/settings/organization/job-titles', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_JOB_TITLES->value])
->name('organization.job_titles');
$router->get('/settings/organization/vocabulary', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_VOCABULARY->value])
->name('organization.vocabulary');
$router->get('/settings/organization/topics', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_TOPICS->value])
->name('organization.topics');
$router->get('/settings/organization/autoscore', [OrganizationSettingsController::class, 'show'])
->middleware(['permission:' . PermissionEnum::MANAGE_ACS->value])
->name('organization.autoscore');
$router->get('/settings/organization/ai-context', [FrontendController::class, 'render'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_context');
$router->get('/settings/organization/ai-automation/{section?}', [FrontendController::class, 'renderStatic'])
->middleware(['permission:' . PermissionEnum::MANAGE_SETTINGS->value])
->name('organization.ai_automation');
// Internal Kiosk V2.
$router->group(['middleware' => 'can:kiosk,' . User::class], static function (Router $router): void {
$router->get('/kiosk', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.index');
$router->get('/kiosk/onboard-list', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.onboard_list');
$router->get('/kiosk/users', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.users');
$router->get('/kiosk/automated-reports', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.automated_reports');
$router->get('/kiosk/activities', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.activities');
$router->get('/kiosk/mobile-version', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.mobile_version');
$router->get('/kiosk/diarize-via-transcript', [Kiosk\DashboardController::class, 'show'])
->name('kiosk.diarize_via_transcript');
// Kiosk User Profiles...
$router->get('/kiosk/users/{user}/profile', [Kiosk\ProfileController::class, 'show']);
// Kiosk Impersonation...
$router->get('/kiosk/users/{user}/impersonate', [Kiosk\ImpersonationController::class, 'impersonate']);
});
// Kiosk Re-Impersonation...
$router->get('/kiosk/users/{user}/re-impersonate', [Kiosk\ImpersonationController::class, 'reImpersonate']);
$router->get('/kiosk/users/stop-impersonating', [Kiosk\ImpersonationController::class, 'stopImpersonating']);
});
// Live coach
$router->get('/live/{activity}', [LiveCoachController::class, 'show'])
->middleware(ConfigureLiveStreamAfterResponse::class)
->name('show.live-coach.activity');
});
$router->group(['middleware' => ['auth', 'activeUser']], static function (Router $router): void {
// SSO Login Success
$router->get('/token-login', [SsoController::class, 'ssoTokenLogin'])->name('login.token');
});
$router->group(['middleware' => ['auth', 'validUser']], static function (Router $router): void {
$router->get('/softphone/{activity}/coach', [Controllers\Telephony\Voice\SoftPhoneController::class, 'coach'])
->name('softphone.coach.join');
});
// Geocoding...
$router->get('/geocode/country', [GeocodingController::class, 'country']);
$router->get('/geocode/states/{country}', [GeocodingController::class, 'states']);
// Export audio & video portal.
$router->get('export/{token}', [ExportController::class, 'view'])->name('export');
$router->get('export/{token}/playlist.m3u8', [ExportController::class, 'playlist'])->name('export-playlist');
$router->get('export/{token}/media/{track}.m3u8', [ExportController::class, 'media']);
// Conferences opt in and out controls
$router->get(
'conferences/{participant}/opt-out-recording',
[ConferencesOptInOutController::class, 'optOutRecording'],
)->name('conference.opt-out');
$router->get('conferences/{participant}/opt-in-recording', [ConferencesOptInOutController::class, 'optInRecording'])
->name('conference.opt-in');
$router->get('join/{teamSlug}/{userSlug}/{activity}', [ConferencesOptInOutController::class, 'obtainConsent'])
->name('conference.obtain-consent');
// Stream audio nicely.
$router->get('stream/{file}', [AudioController::class, 'stream'])->where('file', '.*');
Execute
Explain Plan
Browse Query History
View Parameters
Open Query Execution Settings…
In-Editor Results
Tx: Auto
Cancel Running Statements
Playground
jiminny
Sync Changes
Hide This Notification
Code changed:
Hide
19
17
13
Previous Highlighted Error
Next Highlighted Error
SELECT * FROM teams WHERE id = 1;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 283;
SELECT * FROM crm_fields WHERE id = 2234;
SELECT * FROM crm_field_values WHERE crm_field_id = 2234;
select * from crm_profiles where user_id = 143;
select * from record_types where crm_configuration_id = 39; # 0121K000001MHElQAO,0121K000001MHEqQAO
select * from business_processes where crm_configuration_id = 39;
# 01941000000H669AAC, 01941000000H66JAAS
select * from record_type_field_values
where record_type_id IN (24);
select * from crm_field_values where id IN (2730);
select * from crm_configurations where id = 39;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce'; #1035
select * from users where team_id = 1; # 222 group 3
SELECT * FROM activities WHERE user_id = 222 order by id desc;
select * from sidekick_settings where team_id = 1;
select * from teams where id = 1;
select * from team_features where team_id = 1;
select * from activities where crm_configuration_id = 2
and provider = 'ms-teams' and id = 608765;
SELECT * FROM activities WHERE crm_configuration_id = 2 and crm_provider_id = '59523413338';
select * from sidekick_settings where team_id = 2;
SELECT * FROM activities WHERE id = 608660;
select * from activity_summary_logs where activity_id = 608660;
select * from ai_prompts where transcription_id = 11214;
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('ed78a437-2804-450e-ab2f-56ab1c641346') = uuid;
# id: 608818, crm: 59628809737
SELECT * FROM activities WHERE uuid_to_bin('36b06e55-afdd-4782-8dee-c624cd0af191') = uuid;
# id: 608821, crm: 59632069252
SELECT ce.start_time, ce.end_time, a.id, a.uuid, crm_provider_id, calendar_event_id, title,
playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id,
scheduled_start_time, scheduled_end_time, actual_start_time, actual_end_time, a.created_at
FROM activities a
join calendar_events ce on a.calendar_event_id = ce.id
WHERE a.id IN (608818, 608821);
select * from users where team_id = 1;
select * from team_settings where team_id = 1;
select * from crm_profiles where crm_configuration_id = 39 order by user_id;
select * from team_features where team_id = 1;
select * from users where team_id = 2;
SELECT * FROM activities WHERE uuid_to_bin('ec7647e9-5225-458b-b475-f31aa2769204') = uuid; # 612639
# Preslava N. Ivanova, grou id 3
SELECT * FROM opportunities WHERE uuid_to_bin('a2928fe5-aec5-46cb-85d9-7654c89e46a6') = uuid;
select * from activities where opportunity_id = 344 and actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00';
select
a.id,
a.type,
a.scheduled_start_time,
a.actual_start_time,
a.created_at,
a.opportunity_id,
a.status
FROM activities a
WHERE opportunity_id = 344
and status IN ('completed', 'received', 'delivered')
and (
(a.actual_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.created_at between '2024-10-11 00:00:00' and '2024-10-12 00:00:00')
OR (a.scheduled_start_time between '2024-10-11 00:00:00' and '2024-10-12 00:00:00'))
;
SELECT * FROM users WHERE id = 222;
SELECT * FROM crm_profiles WHERE user_id = 222;
select * from crm_layouts where crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 281;
select * from group_deal_risk_types;
select * from opportunities where team_id = 1;
SELECT * FROM opportunities WHERE id = 315;
SELECT * FROM crm_field_data WHERE object_id = 315;
select * from crm_field_data where object_id = 260;
select * from generic_ai_prompts where subject_id = 315;
select * from teams; # 36, 21, 121, [EMAIL]
SELECT * FROM social_accounts WHERE sociable_id = 121 and provider = 'bullhorn';
# [PASSWORD_DOTS]
select * from teams where id = 1;
select * from crm_configurations where id = 39;
select * from users where team_id = 1;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 1;
# 1 - 00541000004281rAAA
# 204 - 0052g000003freeAAA
# 429 - 0052g000003qGOiAAM
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
select * from activities where type = 'softphone'
and created_at > '2024-12-11 15:24:36' order by id desc;
select * from activity_providers where team_id = 1;
select * from activity_provider_users where activity_provider_id = 328;
select * from opportunities where crm_configuration_id = 39
AND account_id = 178 AND is_closed = false
order by created_at DESC;
select * from contacts where id = 3952;
select * from accounts where id = 178;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations where id = 21;
select * from users where team_id = 36;
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 36
and sa.provider = 'bullhorn';
select * from social_accounts where id = 348;
UPDATE social_accounts SET
provider_user_token = '21442_6802599_91:41179a58-21e7-4d7c-ad58-56bb666b2f65',
provider_refresh_token = '21442_6802599_91:01c6b335-3f2a-42e4-85ff-8a08fa65fceb',
expires = 1733998131,
state = 'connected'
WHERE id = 348;
# [PASSWORD_DOTS]
select * from teams where id = 31;
select * from crm_configurations where id = 18;
select * from users where team_id = 31; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 31;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 31
and sa.provider = 'close';
select * from contacts where crm_configuration_id = 18;
# [PASSWORD_DOTS] NEPTUNE [PASSWORD_DOTS]
select * from teams;
select * from users where id IN (1030, 1035, 1052);
select * from crm_configurations;
select * from users where team_id = 65; # 257
select * from team_settings where team_id = 65; # 257
select * from invitations where team_id = 65; # 257
select * from users where email = '[EMAIL]'; # 257
select u.email, cp.* from users u
join crm_profiles cp on u.id = cp.user_id
where u.team_id = 65;
select * from crm_configurations where id = 53;
select * from accounts where crm_configuration_id = 53 order by id desc;
select * from leads where crm_configuration_id = 53 order by id desc;
select * from contacts where crm_configuration_id = 53 order by id desc;
select * from opportunities where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 53 order by id desc;
select * from crm_fields where crm_configuration_id = 53 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 53 order by id desc;
select * from stages where crm_configuration_id = 53 order by id desc;
select * from crm_profiles where crm_configuration_id = 13;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
and sa.provider = 'integration-app';
select * from contacts where crm_configuration_id = 13;
select * from social_accounts where sociable_id = 283;
SELECT * FROM opportunities WHERE crm_provider_id = '006O400000E9bzeIAB';
select * from activity_providers where team_id = 65;
SELECT * FROM activities WHERE crm_configuration_id IN (51, 52, 53);
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 65
;
# [PASSWORD_DOTS] STAGING [PASSWORD_DOTS]
SELECT * FROM teams;
SELECT * FROM teams WHERE id = 88;
SELECT * FROM teams WHERE id = 89;
select * from team_settings where team_id = 89;
SELECT * FROM users WHERE team_id = 89;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 89;
select * from users;
SELECT * FROM social_accounts WHERE sociable_id = 1761;
SELECT * FROM crm_configurations WHERE id = 70;
select * from accounts where crm_configuration_id = 70 order by id desc;
select * from leads where crm_configuration_id = 70 order by id desc;
select * from contacts where crm_configuration_id = 70 order by id desc;
select * from opportunities where crm_configuration_id = 70 order by id desc;
select * from crm_profiles where crm_configuration_id = 70 order by id desc;
select * from crm_fields where crm_configuration_id = 70 order by id desc;
select * from crm_field_values where crm_field_id = 3536 order by id desc;
select * from crm_layouts where crm_configuration_id = 70 order by id desc;
select * from stages where crm_configuration_id = 70 order by id desc;
select * from business_processes where crm_configuration_id = 70 order by id desc;
select * from business_process_stages where business_process_id = 34;
select * from contacts where id = 10468;
select * from crm_layouts where crm_configuration_id = 70;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 388;
SELECT * FROM crm_fields WHERE id IN (3533,3534,3535);
select * from activities where crm_configuration_id = 70
and (account_id IS NOT NULL or lead_id IS NOT NULL or contact_id IS NOT NULL or opportunity_id IS NOT NULL) order by id desc;
SELECT * FROM activities WHERE uuid_to_bin('2e10b60f-8a61-41c5-a3d4-28835353dc65') = uuid;
SELECT * FROM activities where crm_configuration_id = 69 ;
SELECT * FROM users WHERE email LIKE '%[EMAIL]%';
SELECT * FROM activities WHERE uuid_to_bin('5a150c93-40fc-42ec-b3bd-c1d328e09f6e') = uuid;
SELECT * FROM opportunities WHERE id = 385;
select * from participants p
join activities a on p.activity_id = a.id
where a.crm_configuration_id = 70
and (p.lead_id IS NOT NULL or p.contact_id IS NOT NULL);
SELECT * FROM participants WHERE id = 1013638;
select * from teams where id = 90;
select * from users where team_id = 90;
select * from social_accounts where social_accounts.sociable_id IN (1960,1760);
SELECT * FROM crm_profiles WHERE crm_configuration_id = 71;
select * from invitations where team_id = 90;
select * from crm_configurations where id = 71;
select * from accounts where crm_configuration_id = 71 order by id desc;
select * from leads where crm_configuration_id = 71 order by id desc;
select * from contacts where crm_configuration_id = 71 order by id desc;
select * from opportunities where crm_configuration_id = 71 order by id desc;
select * from crm_profiles where crm_configuration_id = 71 order by id desc;
select * from crm_fields where crm_configuration_id = 71 order by id desc;
select * from crm_field_values where crm_field_id = 3341 order by id desc;
select * from crm_layouts where crm_configuration_id = 71 order by id desc;
select * from stages where crm_configuration_id = 71 order by id desc;
select * from users order by secondary_email desc;
select u.id, u.email, u.status, sa.id, sa.provider_user_id from social_accounts sa
join users u on sa.sociable_id = u.id
where sa.provider = 'google' and u.email LIKE 'aneliya%';
select * from failed_jobs order by id desc;
select * from users where email = '[EMAIL]' or secondary_email = '[EMAIL]';
select * from teams;
SELECT * FROM crm_profiles WHERE crm_configuration_id = 39;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type = 'task';
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 1
and sa.provider = 'salesforce';
# [PASSWORD_DOTS]
SELECT * FROM activities WHERE uuid_to_bin('c38b3895-fd0f-4b1f-9fb2-c170dba137c6') = uuid;
SELECT * FROM crm_configurations WHERE id = 70;
select * from teams where id = 1;
select * from groups where team_id = 1;
select * from users where team_id = 1;
select o.id, o.name,o.close_date, u.id, u.name, u.group_id, r.id, r.display_name, g.name, g.scope from opportunities o
join users u on o.user_id = u.id
join groups g on u.group_id = g.id
join role_user ru on u.id = ru.user_id
join roles r on ru.role_id = r.id
where o.crm_configuration_id = 39 and close_date > '2024-01-01 00:00:00';
select * from role_user where user_id = 143;
select * from roles;
select * from role_user;
select * from groups where id = 9;
select * from scope_groups where group_id = 9;
# [PASSWORD_DOTS]
select * from teams where id = 36;
select * from crm_configurations;
SELECT * FROM social_accounts WHERE sociable_id = 121;
https://crmsandbox.zoho.com/crm/jiminnyw4/tab/Leads/4776201000005049105
https://crmsandbox.zoho.com/crm/
https://crm.zoho.com/crm/org3469620/tab/Leads/230045000229559080
https://crm.zoho.com/crm/
org3469620
SELECT * FROM activities WHERE uuid_to_bin('03382d20-c8bc-48e7-a3d4-90b52fa5ceab') = uuid;
select * from users where email LIKE "%mobile_automation_%";
select * from social_accounts where sociable_id IN (2228);
select * from crm_profiles where user_id IN (2222,2223,2226,2227);
select * from teams order by id desc;
SELECT * FROM users WHERE id = 2229;
SELECT * FROM crm_profiles WHERE user_id = 2229;
select * from opportunities where crm_configuration_id = 88;
select * from crm_fields where crm_configuration_id = 88;
select * from crm_profiles where crm_configuration_id = 88;
SELECT * FROM teams WHERE id = 1;
SELECT * FROM users WHERE id = 143;
SELECT * FROM users WHERE uuid_to_bin('fde193d3-06a2-4e1a-8895-62b94039215d') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73385071-a756-42ae-9c73-8b53f2309467') = uuid;
https://app.staging.jiminny.com/ondemand?
min_duration=1
&
only_recorded=1
&
user_id%5B%5D=641f1acb-16b8-42d1-8726-df52979dad0e
&
sequence_number=2
select * from users where team_id = 1 and email like '%stoyan%'
select * from coaching_feedbacks;
select * from teams;
SELECT * FROM users WHERE team_id = 36;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from users where id = 143;
SELECT * FROM users WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM teams WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
SELECT * FROM activity_shares WHERE uuid_to_bin('73180eeb-33de-4065-977d-ccbe0e6c94fc') = uuid;
select * from users where team_id = 2;
select * from activities where crm_configuration_id = 39
and activities.scheduled_start_time BETWEEN '2025-04-09 00:00:00' AND '2025-04-09 23:59:59'
AND user_id = 143
order by id desc;
# [PASSWORD_DOTS]
select * from teams where id = 142; # 2312, 126
select * from team_settings;
select * from users where team_id = 142; # 21642
SELECT * FROM social_accounts WHERE sociable_id = 21642;
SELECT * FROM crm_profiles cp join users u ON u.id = cp.user_id WHERE team_id = 142;
select * from crm_profiles where id IN (93);
select * from invitations;
select * from team_features where team_id = 1;
SELECT * FROM crm_configurations WHERE id = 126;
select * from accounts where crm_configuration_id = 126 order by id desc;
select * from leads where crm_configuration_id = 126 order by id desc;
select * from contacts where crm_configuration_id = 126 order by id desc;
select * from opportunities where crm_configuration_id = 126 order by id desc;
select * from crm_profiles where crm_configuration_id = 126 order by id desc;
select * from crm_fields where crm_configuration_id = 126 # 11060
# and type IN ('picklist', 'status')
# and object_type = 'task'
order by id desc;
# 5731,5732,5733
select DISTINCT crm_field_id from crm_field_values where crm_field_id IN (11151,12239,12215,12185,12175,12165,12144,12137,12127,12109,12107,12105,12103,12092,12037,12005,12003,11987,11969,11958,11951,11942,11931,11924,11921,11917,11915,11901,11893,11883,11872,11870,11868,11866,11839,11833,11821,11793,11780,11777,11769,11757,11737,11735,11656,11645,11638,11629,11618,11611,11602,11591,11584,11581,11558,11544,11543,11534,11532,11529,11527,11503,11497,11493,11488,11470,11468,11457,11455,11397,11387,11372,11363,11348,11323,11318,11309,11301,11300,11292,11290,11286,11284,11256,11252,11242,11237,11233,11219,11176,11160) order by id desc;
select * from crm_layouts where crm_configuration_id = 126 order by id desc;
SELECT * FROM crm_layout_entities WHERE crm_layout_id in (300,299,298);
select * from stages where crm_configuration_id = 126 order by id desc;
select * from business_processes where crm_configuration_id = 126 order by id desc;
select * from business_process_stages where business_process_id IN (76,75,74,73);
select * from playbooks where team_id = 142;
select * from playbook_layouts where playbook_id IN (108);
SELECT * FROM playbook_categories WHERE playbook_id IN (108);
select * from teams where id = 130;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 2
and sa.provider = 'hubspot';
SELECT * FROM activities
WHERE crm_configuration_id = 110;
select * from teams;
select * from crm_configurations;
SELECT * FROM activities WHERE id = 628773;
SELECT * FROM crm_profiles WHERE user_id = 1460;
SELECT * FROM social_accounts WHERE sociable_id = 2291;
select * from teams;
select ru.*, pr.*, p.* from users u join role_user ru on ru.user_id = u.id
join permission_role pr on pr.role_id = ru.role_id
join permissions p on p.id = pr.permission_id
where team_id = 495 and p.name IN ('dial');
select * from teams where id = 145;
select * from crm_configurations where id = 129;
select * from social_accounts where sociable_id = 2317;
SELECT * FROM activities WHERE uuid_to_bin('8dbab184-a333-4268-ad57-fb41f8d53a9a') = uuid;
select * from teams where id = 1;
SELECT * FROM crm_layouts WHERE crm_configuration_id = 39;
SELECT * FROM crm_layout_entities WHERE crm_layout_id = 280;
SELECT * FROM crm_layout_entities WHERE id = 5507;
SELECT * FROM crm_fields WHERE crm_configuration_id = 39 and object_type IN ('event');
select * from teams;
select * from activities where crm_configuration_id = 14;
SELECT * FROM social_accounts where provider = 'copper';
select * from activities where id = 628467;
select * from participants where activity_id = 628467;
SELECT * FROM contacts WHERE id = 3969;
SELECT * FROM accounts WHERE id = 177;
SELECT * FROM activities WHERE uuid_to_bin('4eb54c77-cfa3-2bd4-84a7-9ed46a21c988') = uuid;
# [PASSWORD_DOTS] BH
select * from teams where id = 36;
SELECT * FROM crm_configurations WHERE id = 21;
select * from activities where crm_configuration_id = 21 and id = 607901;
select * from activities where crm_configuration_id = 21;
select * roles;
select * from permissions;
select * from permission_role where permission_id = 226;
select * from migrations order by id desc;
# mercury
# neptune
# earth
select * from teams;
select * from teams where id = 19;
select * from teams where id = 27;
select * from users where team_id = 27;
SELECT * FROM crm_configurations WHERE id = 42;
select * from social_accounts sa
join users u on sa.sociable_id = u.id
where u.team_id = 19
and sa.provider = 'pipedrive';
select * from activities where id = 631461;
SELECT * FROM crm_field_values WHERE crm_field_id = 180;
select * from teams where id = 2;
SELECT * FROM social_accounts WHERE sociable_id = 89;
SELECT * FROM activities WHERE uuid_to_bin('ba0c029a-bc14-4e17-8603-64174acebcbb') = uuid; # 634273
select * from activity_summary_logs where activity_id = 634273;
select * from sidekick_settings where team_id = 2;
select * from teams; # 2, 2
SELECT * FROM crm_configurations WHERE team_id = 2; # 2
select * from team_features where team_id = 2;
select * from features;
SELECT * FROM opportunities WHERE crm_configuration_id = 2 and crm_provider_id = '51317301383';
SELECT * FROM opportunities WHERE crm_configuration_id = 2 order by id desc;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from users where team_id = 1 and id IN (7160, 3248);
select * from migrations order by id desc;
SELECT
CONCAT(u.id, CASE WHEN u.id = t.owner_id THEN ' (owner)' ELSE '' END) AS user_id,
u.email,
sa.*,
t.owner_id FROM social_accounts sa
JOIN users u on u.id = sa.sociable_id
JOIN teams t on t.id = u.team_id
WHERE u.team_id = 1 and sa.provider = 'salesforce';
select * from teams where id = 1;
select * from groups g JOIN playbooks p on g.playbook_id = p.id where g.team_id = 1;
select * from groups where id = 565;
select * from playbooks where team_id = 1;
select * from playbooks where id = 175;
select * from playbook_categories where playbook_id = 175;
select * from users where team_id = 1;
select * from users where id = 7160;
select * from crm_profiles where user_id = 7160;
select * from features;
select
*
# id, uuid, type, provider, playbook_category_id, user_id, lead_id, contact_id, account_id, opportunity_id, stage_id,
# crm_configuration_id, crm_provider_id, transcription_id, status
from activities where crm_configuration_id = 1 and type = 'conference'
# and crm_provider_id IS NOT NULL
and provider != 'uploader' and actual_start_time IS NOT NULL
ORDER by id desc;
select * from activities where id = 54747783; # 00UO400000pCzojMAC
select p.id, p.activity_type, pc.id, pc.name
FROM playbooks p
join playbook_categories pc on p.id = pc.playbook_id
where p.team_id = 1 and p.activity_type = 'event';
SELECT * FROM crm_fields WHERE crm_configuration_id = 1 and object_type = 'event';
SELECT * FROM crm_field_values WHERE crm_field_id = 4;
select * from crm_layouts cl join playbook_layouts pl on cl.id = pl.layout_id
where crm_configuration_id = 1 and pl.playbook_id = 175;
select * from teams;
SELECT r.* FROM automated_reports r
join teams t on r.team_id = t.id
WHERE r.frequency = 'daily'
and r.status = 1
AND t.status = 'active'
AND (r.expires_at >= now() OR r.expires_at IS NULL);
select * from automated_report_results where report_id IN (18, 33);
select * from activity_searches where id = 10932;
select * from activity_search_filters where activity_search_id = 10932;
select * from automated_reports order by id desc;
select * from automated_report_results order by id desc;
select * from automated_report_results where report_id IN (37);
select * from users where id IN (7160, 3248);
select * from users where group_id IN (3710);
SELECT * FROM automated_reports WHERE uuid_to_bin('18a06a75-afd2-476f-aadc-14d4057bdda2') = uuid;
SELECT * FROM automated_report_results WHERE uuid_to_bin('582d4b50-8cd3-42a9-9819-d676ff8f3b43') = uuid;
Project
Project
New File or Directory…
Expand Selected
Collapse All
Options
Hide
app ~/jiminny/app
.circleci
.cursor
.github
.sonarlint
.vscode
.windsurf
app, sources root
Actions
Component
Configuration
Console
Commands, folder
Activities, folder
Analytics
Calendars
Crm
DealInsights
Dev
Dialers
DTOs
Elasticsearch
EngagementStats
GeckoExport
Livestream
Mailboxes
Migrate
PlaybackThemes
Playbooks
Playlists
Postmark
ProphetAi
Reports
AutomatedReportsCommand.php, class
AutomatedReportsRetentionPolicyCommand.php, class
AutomatedReportsSendCommand.php, class
CreateMockAskJiminnyReportResultCommand.php, class
DeleteReportCommand.php, class
GenerateMarketingReport.php, class
Team.php, class
Usage.php, class
Slack
Teams
Tracks, folder
Transcription, folder
Twilio, folder
Users, folder
Vocabulary, folder
Zoom, folder
CoachingFeedbacksUpdateEsActivities.php, class
Command.php, class
CreateDatabaseUsers.php, class
DatabaseTableCount.php, class
DeleteOldAiCrmNotesCommand.php, class
DeleteS3LeftoversCommand.php, class
DevPostmanCommand.php, final class
DiarizeViaAiParticipantIdentificationCommand.php, class
EncryptTokensCommand.php, class
EngagementStatsRegenerateCommand.php, class
FeatureFlagsHelper.php
FixCrossTenantIssues.php
FlushRolesPermissionsCache.php
GenerateInternalWebhookToken.php
GroupSetDefaultLanguageCommand.php
HelperTruncateCoachingTables.php
HubspotJournalPollingCommand.php
HubspotWebhookServiceCommand.php
ImportRecording.php
ImportUsersFromCsvFile.php
IterateUsersCommand.php
JiminnyCacheClearCommand.php
JiminnyDebugCommand.php...
|
NULL
|
|
71228
|
1692
|
24
|
2026-04-22T12:17:33.246748+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860253246_m1.jpg...
|
PhpStorm
|
faVsco.js – users [PROD]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
0
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
Editor
Galya Dimitrova
Galya Dimitrova
Editor
[EMAIL]
[EMAIL]
Editor
<null>
<null>
Editor
1
1
0
<null>
<null>
Editor
<null>
<null>
Editor
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
Editor
0
0
0
<null>
<null>
Editor
BG
BG
Editor
<null>
<null>
0
[PHONE]
[PHONE]
Editor
<null>
<null>
Editor
<null>
<null>...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20157-AJ-report-not-send-notification, menu","depth":5,"help_text":"Git Branch: JY-20157-AJ-report-not-send-notification","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"A","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.008333334,"height":0.03},"role_description":"text"},{"role":"AXButton","text":"Select All","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"17009","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"17009","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"0","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"0","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Galya Dimitrova","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galya.dimitrova@jiminny.com","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"galya.dimitrova@jiminny.com","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"0","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"0","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"0","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"0","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"0","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"0","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"BG","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"BG","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"0","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"0","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"+359899722322","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"+359899722322","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"Editor","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"}]...
|
6461854356251099011
|
-2941773457430467322
|
click
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
0
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
Editor
Galya Dimitrova
Galya Dimitrova
Editor
[EMAIL]
[EMAIL]
Editor
<null>
<null>
Editor
1
1
0
<null>
<null>
Editor
<null>
<null>
Editor
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
Editor
0
0
0
<null>
<null>
Editor
BG
BG
Editor
<null>
<null>
0
[PHONE]
[PHONE]
Editor
<null>
<null>
Editor
<null>
<null>...
|
71226
|
|
71227
|
1693
|
18
|
2026-04-22T12:17:26.262603+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860246262_m2.jpg...
|
PhpStorm
|
faVsco.js – users [PROD]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.25797874,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20157-AJ-report-not-send-notification, menu","depth":5,"bounds":{"left":0.29654256,"top":0.019952115,"width":0.10139628,"height":0.025538707},"help_text":"Git Branch: JY-20157-AJ-report-not-send-notification","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
808183637930601096
|
5210792322634073220
|
click
|
hybrid
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
FllesLateMorePhpStormViewINavigareJiminny...vTMore unreads# arcnapter# alerts# backend# c-learning-people# contusion-clinic# curiosity_lab# deal-insiehts-dev# engineering# frontend# general# infra-changes#t liminnv-be• people-with-copilo..8 people-with-zoom-…..# platform-team# platform-tickets#t product launches# random# releases# sofa-office# supporti thank-vous# the people of jimi..ó- Direct messagesStoyan Tomov3 Aneliya Angelova, ...l Anolisin AnaolAvncodeLaravelKeractorTOOIS* Aneliya Angelova, ...84MessagesAdd canvaUr Filesда всеки денAneliya Angelova 3:10 PMи това означава, че при сторито - дахората ще получават емеили и уикендитеLukas Kovalik 3:12 PMда, тогава ако е празно ще пратим ета ченяма нищо, и в понеделник за неделяAneliya Angelova 3:12 PMlukas Kovalik 2.12 PMможе би тогава само без weekendAneliya Angelova 3:14 PMІаля обмисля слелния вапиант - само задейли репорта ако е събота и неделя да неправи нищо, а в понеделник да генерира затора лали може па станеNikolay Yankov 3:16 PMТова е лобоа илея.Lukas Kovallk 3:17 PMможе лаMessage Aneliva Angelova, Nikolay Yankov. Steli…+ АaWindowHelpFv faVsco.jsvP9 JY-20157-AJ-report-not-send-notificaProject vphp artisani© AskJiminnyReportActivityService.php xAutomatedkeporsserwice.onpAutomatedkeporscommana.pnpcomooser.isoncomooser.lockdenendencv-checker.ison© AutomatedReportsRepository.phppnp apLvz.php© AutomatedReportResult.phpdev.ison= ids.txt45=infection.ison.distclass AskJ1minnyReportAct1v1tyServ1cepublic function getActivityIdsForSavedSearchCMLINSTALL.mdlM+ INTERNAL_WEBHOOK_SETUP.mdjiminny_storageMiliconcoc mdM Makefiletpackace-lock. son=onostan.neon.alst=phpstan-baseline.neon<> phpunit.xmle raw sol query.sa.M+ READMc.mdos sonar-oroiect.properies=test.ov<> Untitled Diagram.xmus vetur.contid.isM+ WEBHOOK FILTERING MPLEMENTATIC>Ih External Librariesv =° Scratches and Consolesv Database Consolesv AEUA console fEUlA DEAL RISKS (EU1DITEUlA EU (EU]v&jiminny@localhost« console fiminny@localhost)A Di [jiminny@localhost]A HS_local (jiminny@localhost]A SF (jiminny@localhost]A zoho_dev (jiminny@localhost]V A PRODA console [PROD]4 console 1 [PROD]A DI [PROD1> ДQA> &ФAIIA QAI PRODv ASTAGING¿ console STAGINGIL console 1 STAGINGIIduranus STAGINGExtensions› M ScratchesSatch cuccoccfully annliod (taday 12.16User Suser,Ostrina Sfrequency = nulu): array 1SreauestParams = Sthis->bu1.dRequestParamsFromSearchSsavedSearch, Suser):if ($frequency !== nulb) 1$dateRange = $this->calculateDateRangeForFrequency (Sfrequency, $user):if (SdateRange 1== nulb «$requestParams[ActivityActualDate::PARAM_START_DATE) = SdateRange['start_date']:$requestParams[ActivityActualDate::PARAM_END_DATE) = SdateRange['end_date']:$criteria = Criteria::createFromRequest(array meroe srequestrarans,'limit' => self::DEFAULT TOP ACTIVITIES COUNT.'page' => 1'sequence number => 1,Suser->getTimezoneOsfilterset = sthis->activitvSearch->qetOnDemandPageFilterSet Scriteria. suser)isactivitvids = Sthis->elasticRenositorv->onDemandSearchids0nlvSuser. Scriteria. SfilterSet):$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', ['saved_search_id' => $savedSearch->getido,'usen id' => Susen->aetIdo.lactivity counti => count(Sactivitvlds)lneturn Sactivitvids:1 usageprivate function buildRequestParamsFromSearch(Search $savedSearch, User Suser): array{...}* @return arrayfstart date: string, end date: string}lnullprivate function calculateDateRangeForFrequencv(string Sfrequency. User Suser): 2arrav$now = CarbonImmutable::now(Suser->qetTimezoneO):M221A"Al chapter• In 1h 43m100% L2Wed 22 Apr 15:17:28= custom.log= laravel.log4 SF jiminny@localhost]« HS_local [jiminny@localhost]& console [PROD]itb users (PROD] X« console (EU]A console [STAGING]1rowv g OUTx: Auto v DDLCSV.~L$OY- WHERE id = 17009=*URDER BYADidMuuid (UUID)nameemailsecondary_email!D status(# passwordremember tokenW photo_path@uses_two_factor_auth1authy_idI country codeI region idI phonesecondary ohone1 caller_idI job_title_idI*two_factor reset coded-e team_idL group_idl timezoneLanguageI• conference_numberI• conference pinI conference slua! conference_join_preference! conference_join_reminderconference record announce! conference_ record_preferencesoftohone numbenW softphone_inbound_destination! conference_bandwidthconference notify smsconference start webcam17009uzecsoco-/aoo-satt-ds5o-yc/soooecdooGalva Dimitrovaaalva.dimitrovadiiminnv.com<null5F0+4810-7e77-4086-8f69-95429a040700/avatans/LuhbalTowuLoLvyzziHorF8koLS09FdeBorud4<nul]><nUll>[PHONE]<null)7341Catill1868Eurone/Sofiaen_USSnuLl»<null>aalvadimitrovaon-demand[PHONE]conference auto_ioin_ by comouterIN conference reduce video resolution :! softphone_record_preference!softphone_passthru_pauseSIIM. Not anduah valuoc MN Windeurf Taame...
|
NULL
|
|
71226
|
1692
|
23
|
2026-04-22T12:17:23.594064+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860243594_m1.jpg...
|
PhpStorm
|
faVsco.js – users [PROD]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
1
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
on-demand
Galya Dimitrova
Galya Dimitrova
on-demand
[EMAIL]
[EMAIL]
on-demand
<null>
<null>
on-demand
1
1
1
<null>
<null>
on-demand
<null>
<null>
on-demand
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
on-demand
0
0
1
<null>
<null>
on-demand
BG
BG
on-demand
<null>
<null>
1
[PHONE]
[PHONE]
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
7341
7341
1
<null>
<null>
on-demand
1
1
1
2868
2868
1
Europe/Sofia
Europe/Sofia
on-demand
en_US
en_US
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
galyadimitrova
galyadimitrova
on-demand
on-demand
on-demand
on-demand
1...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20157-AJ-report-not-send-notification, menu","depth":5,"help_text":"Git Branch: JY-20157-AJ-report-not-send-notification","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"A","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.008333334,"height":0.03},"role_description":"text"},{"role":"AXButton","text":"Select All","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"17009","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"17009","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Galya Dimitrova","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galya.dimitrova@jiminny.com","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"galya.dimitrova@jiminny.com","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"0","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"0","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"BG","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"BG","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"+359899722322","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"+359899722322","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"7341","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"7341","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"2868","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"2868","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Europe/Sofia","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"Europe/Sofia","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"en_US","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"en_US","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galyadimitrova","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"galyadimitrova","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"on-demand","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"on-demand","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"role_description":"cell"}]...
|
3719959150903187964
|
-3159633706189738636
|
app_switch
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
1
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
on-demand
Galya Dimitrova
Galya Dimitrova
on-demand
[EMAIL]
[EMAIL]
on-demand
<null>
<null>
on-demand
1
1
1
<null>
<null>
on-demand
<null>
<null>
on-demand
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
on-demand
0
0
1
<null>
<null>
on-demand
BG
BG
on-demand
<null>
<null>
1
[PHONE]
[PHONE]
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
7341
7341
1
<null>
<null>
on-demand
1
1
1
2868
2868
1
Europe/Sofia
Europe/Sofia
on-demand
en_US
en_US
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
galyadimitrova
galyadimitrova
on-demand
on-demand
on-demand
on-demand
1...
|
NULL
|
|
71225
|
1693
|
17
|
2026-04-22T12:17:23.365154+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860243365_m2.jpg...
|
PhpStorm
|
faVsco.js – users [PROD]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
1
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
on-demand
Galya Dimitrova
Galya Dimitrova
on-demand
[EMAIL]
[EMAIL]
on-demand
<null>
<null>
on-demand
1
1
1
<null>
<null>
on-demand
<null>
<null>
on-demand
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
on-demand
0
0
1
<null>
<null>
on-demand
BG
BG
on-demand
<null>
<null>
1
[PHONE]
[PHONE]
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
7341
7341
1
<null>
<null>
on-demand
1
1
1
2868
2868
1
Europe/Sofia
Europe/Sofia
on-demand
en_US
en_US
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
galyadimitrova
galyadimitrova
on-demand...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"bounds":{"left":0.25797874,"top":0.019952115,"width":0.03856383,"height":0.025538707},"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20157-AJ-report-not-send-notification, menu","depth":5,"bounds":{"left":0.29654256,"top":0.019952115,"width":0.10139628,"height":0.025538707},"help_text":"Git Branch: JY-20157-AJ-report-not-send-notification","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"bounds":{"left":0.8081782,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"bounds":{"left":0.8234708,"top":0.019952115,"width":0.09208777,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9155585,"top":0.019952115,"width":0.011303191,"height":0.025538707},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"bounds":{"left":0.9268617,"top":0.019952115,"width":0.011303191,"height":0.025538707},"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},"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},"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},"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},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.042220745,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.27027926,"top":1.0,"width":0.008643617,"height":0.0},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"bounds":{"left":0.62267286,"top":0.15003991,"width":0.007978723,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"bounds":{"left":0.63264626,"top":0.15003991,"width":0.00731383,"height":0.015163607},"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"bounds":{"left":0.64162236,"top":0.14844373,"width":0.00731383,"height":0.018355945},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"bounds":{"left":0.64893615,"top":0.14844373,"width":0.006981383,"height":0.018355945},"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\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"A","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.27027926,"top":1.0,"width":0.0039893617,"height":0.0},"role_description":"text"},{"role":"AXButton","text":"Select All","depth":4,"bounds":{"left":0.65625,"top":0.14365523,"width":0.10804521,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"17009","depth":6,"bounds":{"left":0.76462764,"top":0.16520351,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"17009","depth":7,"bounds":{"left":0.76462764,"top":0.16520351,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":6,"bounds":{"left":0.76462764,"top":0.1867518,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":7,"bounds":{"left":0.76462764,"top":0.1867518,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Galya Dimitrova","depth":6,"bounds":{"left":0.76462764,"top":0.20830008,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":7,"bounds":{"left":0.76462764,"top":0.20830008,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galya.dimitrova@jiminny.com","depth":6,"bounds":{"left":0.76462764,"top":0.22984837,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"galya.dimitrova@jiminny.com","depth":7,"bounds":{"left":0.76462764,"top":0.22984837,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.25139666,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.25139666,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"bounds":{"left":0.76462764,"top":0.27294493,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"bounds":{"left":0.76462764,"top":0.27294493,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.29449323,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.29449323,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.3160415,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.3160415,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":6,"bounds":{"left":0.76462764,"top":0.33758977,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":7,"bounds":{"left":0.76462764,"top":0.33758977,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"0","depth":6,"bounds":{"left":0.76462764,"top":0.35913807,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"0","depth":7,"bounds":{"left":0.76462764,"top":0.35913807,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.38068634,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.38068634,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"BG","depth":6,"bounds":{"left":0.76462764,"top":0.40223464,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"BG","depth":7,"bounds":{"left":0.76462764,"top":0.40223464,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.4237829,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.4237829,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"+359899722322","depth":6,"bounds":{"left":0.76462764,"top":0.44533122,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"+359899722322","depth":7,"bounds":{"left":0.76462764,"top":0.44533122,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.4668795,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.4668795,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.4884278,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.4884278,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"7341","depth":6,"bounds":{"left":0.76462764,"top":0.509976,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"7341","depth":7,"bounds":{"left":0.76462764,"top":0.509976,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.53152436,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.53152436,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"bounds":{"left":0.76462764,"top":0.55307263,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"bounds":{"left":0.76462764,"top":0.55307263,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"2868","depth":6,"bounds":{"left":0.76462764,"top":0.5746209,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"2868","depth":7,"bounds":{"left":0.76462764,"top":0.5746209,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"1","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"1","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Europe/Sofia","depth":6,"bounds":{"left":0.76462764,"top":0.5961692,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"Europe/Sofia","depth":7,"bounds":{"left":0.76462764,"top":0.5961692,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"en_US","depth":6,"bounds":{"left":0.76462764,"top":0.6177175,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"en_US","depth":7,"bounds":{"left":0.76462764,"top":0.6177175,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.6392658,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.6392658,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"bounds":{"left":0.76462764,"top":0.66081405,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"bounds":{"left":0.76462764,"top":0.66081405,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galyadimitrova","depth":6,"bounds":{"left":0.76462764,"top":0.6823623,"width":0.23537236,"height":0.0207502},"role_description":"cell"},{"role":"AXStaticText","text":"galyadimitrova","depth":7,"bounds":{"left":0.76462764,"top":0.6823623,"width":0.23537236,"height":0.0207502},"role_description":"text"},{"role":"AXTextArea","text":"on-demand","depth":8,"bounds":{"left":0.27027926,"top":1.0,"width":0.24168883,"height":0.0},"value":"on-demand","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2126854921046962646
|
-3159631507434918538
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
1
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
on-demand
Galya Dimitrova
Galya Dimitrova
on-demand
[EMAIL]
[EMAIL]
on-demand
<null>
<null>
on-demand
1
1
1
<null>
<null>
on-demand
<null>
<null>
on-demand
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
on-demand
0
0
1
<null>
<null>
on-demand
BG
BG
on-demand
<null>
<null>
1
[PHONE]
[PHONE]
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
7341
7341
1
<null>
<null>
on-demand
1
1
1
2868
2868
1
Europe/Sofia
Europe/Sofia
on-demand
en_US
en_US
on-demand
<null>
<null>
on-demand
<null>
<null>
on-demand
galyadimitrova
galyadimitrova
on-demand...
|
71223
|
|
71196
|
1692
|
5
|
2026-04-22T12:14:15.200833+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-22/1776 /Users/lukas/.screenpipe/data/data/2026-04-22/1776860055200_m1.jpg...
|
PhpStorm
|
faVsco.js – users [PROD]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
7341
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
Galya Dimitrova
Galya Dimitrova
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
[EMAIL]
[EMAIL]
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
<null>
<null>
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
1
1
7341
<null>
<null>
<null>...
|
[{"role":"AXButton","text" [{"role":"AXButton","text":"Project: faVsco.js, menu","depth":5,"help_text":"~/jiminny/app","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JY-20157-AJ-report-not-send-notification, menu","depth":5,"help_text":"Git Branch: JY-20157-AJ-report-not-send-notification","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Start Listening for PHP Debug Connections","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"AskJiminnyReportActivityServiceTest","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Run 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Debug 'AskJiminnyReportActivityServiceTest'","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"More Actions","depth":6,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"JetBrains AI","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search Everywhere","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"IDE and Project Settings","depth":5,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code changed:","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.088194445,"height":0.027777778},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Sync Changes","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Hide This Notification","depth":4,"bounds":{"left":0.0,"top":0.0,"width":0.018055556,"height":0.026666667},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"2","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":4,"role_description":"text"},{"role":"AXButton","text":"Previous Highlighted Error","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Next Highlighted Error","depth":4,"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\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","depth":4,"value":"<?php\n\ndeclare(strict_types=1);\n\nnamespace Jiminny\\Services\\Kiosk\\AutomatedReports;\n\nuse Carbon\\CarbonImmutable;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityActualDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\ActivityUpdatedDate;\nuse Jiminny\\Component\\ActivitySearch\\FilterDefinition\\DealInsights\\ClosingPeriodFilter;\nuse Jiminny\\Component\\ActivitySearch\\Service\\ActivitySearch;\nuse Jiminny\\Models\\Activity\\Search;\nuse Jiminny\\Models\\User;\nuse Jiminny\\Repositories\\ElasticActivityRepository;\nuse Jiminny\\VO\\Repository\\OnDemandActivitySearch\\Criteria;\nuse Psr\\Log\\LoggerInterface;\n\nclass AskJiminnyReportActivityService\n{\n private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;\n\n private const array DATE_FILTER_KEYS = [\n ActivityActualDate::PARAM_START_DATE,\n ActivityActualDate::PARAM_END_DATE,\n ActivityUpdatedDate::PARAM_UPDATED_FROM,\n ActivityUpdatedDate::PARAM_UPDATED_TO,\n ClosingPeriodFilter::KEY_START_DATE,\n ClosingPeriodFilter::KEY_END_DATE,\n ];\n\n public function __construct(\n private readonly ActivitySearch $activitySearch,\n private readonly ElasticActivityRepository $elasticRepository,\n private readonly LoggerInterface $logger,\n ) {\n }\n\n /**\n * Fetch activity IDs for a saved search, passing its filters as-is to Criteria.\n * Date filters stored on the saved search are excluded; if no other filters exist,\n * no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.\n *\n * @return string[] Activity IDs\n */\n public function getActivityIdsForSavedSearch(\n Search $savedSearch,\n User $user,\n ?string $frequency = null,\n ): array {\n $requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);\n\n if ($frequency !== null) {\n $dateRange = $this->calculateDateRangeForFrequency($frequency, $user);\n if ($dateRange !== null) {\n $requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];\n $requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];\n }\n }\n\n $criteria = Criteria::createFromRequest(\n array_merge($requestParams, [\n 'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,\n 'page' => 1,\n 'sequence_number' => 1,\n ]),\n $user->getTimezone()\n );\n\n $filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);\n\n $activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);\n\n $this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [\n 'saved_search_id' => $savedSearch->getId(),\n 'user_id' => $user->getId(),\n 'activity_count' => count($activityIds),\n ]);\n\n return $activityIds;\n }\n\n private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array\n {\n $params = [];\n $arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);\n\n foreach ($savedSearch->getFilters() as $filter) {\n $key = $filter->getFilterProperty();\n $value = $filter->getFilterValue();\n\n if (in_array($key, self::DATE_FILTER_KEYS, true)) {\n continue;\n }\n\n if (isset($params[$key])) {\n $params[$key][] = $value;\n } elseif (in_array($key, $arrayFilterKeys, true)) {\n $params[$key] = [$value];\n } else {\n $params[$key] = $value;\n }\n }\n\n return $params;\n }\n\n /**\n * @return array{start_date: string, end_date: string}|null\n */\n private function calculateDateRangeForFrequency(string $frequency, User $user): ?array\n {\n $now = CarbonImmutable::now($user->getTimezone());\n\n $range = match ($frequency) {\n AutomatedReportsService::FREQUENCY_DAILY => [\n $now->subDay()->startOfDay(),\n $now->subDay()->endOfDay(),\n ],\n AutomatedReportsService::FREQUENCY_WEEKLY => [\n $now->subWeek()->startOfWeek(),\n $now->subWeek()->endOfWeek(),\n ],\n AutomatedReportsService::FREQUENCY_MONTHLY => [\n $now->subMonthNoOverflow()->startOfMonth(),\n $now->subMonthNoOverflow()->endOfMonth(),\n ],\n AutomatedReportsService::FREQUENCY_QUARTERLY => [\n $now->subQuarterNoOverflow()->startOfQuarter(),\n $now->subQuarterNoOverflow()->endOfQuarter(),\n ],\n default => null,\n };\n\n if ($range === null) {\n return null;\n }\n\n return [\n 'start_date' => $range[0]->format('Y-m-d H:i:s'),\n 'end_date' => $range[1]->format('Y-m-d H:i:s'),\n ];\n }\n}","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"A","depth":4,"role_description":"text"},{"role":"AXStaticText","text":"1","depth":5,"bounds":{"left":0.0,"top":0.0,"width":0.008333334,"height":0.03},"role_description":"text"},{"role":"AXButton","text":"Select All","depth":4,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"17009","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"17009","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"7341","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"7341","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"42ec35c8-7a66-3dff-b558-9c75866ecd68","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"Galya Dimitrova","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"Galya Dimitrova","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"galya.dimitrova@jiminny.com","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"galya.dimitrova@jiminny.com","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"1","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"1","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"7341","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"7341","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXCell","text":"<null>","depth":6,"role_description":"cell"},{"role":"AXStaticText","text":"<null>","depth":7,"role_description":"text"},{"role":"AXTextArea","text":"<null>","depth":8,"bounds":{"left":0.0,"top":0.0,"width":0.5048611,"height":0.024444444},"value":"<null>","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-2837007335442281440
|
-955823185836298972
|
visual_change
|
accessibility
|
NULL
|
Project: faVsco.js, menu
JY-20157-AJ-report-not-se Project: faVsco.js, menu
JY-20157-AJ-report-not-send-notification, menu
Start Listening for PHP Debug Connections
AskJiminnyReportActivityServiceTest
Run 'AskJiminnyReportActivityServiceTest'
Debug 'AskJiminnyReportActivityServiceTest'
More Actions
JetBrains AI
Search Everywhere
IDE and Project Settings
Code changed:
Hide
Sync Changes
Hide This Notification
2
1
Previous Highlighted Error
Next Highlighted Error
<?php
declare(strict_types=1);
namespace Jiminny\Services\Kiosk\AutomatedReports;
use Carbon\CarbonImmutable;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityActualDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\ActivityUpdatedDate;
use Jiminny\Component\ActivitySearch\FilterDefinition\DealInsights\ClosingPeriodFilter;
use Jiminny\Component\ActivitySearch\Service\ActivitySearch;
use Jiminny\Models\Activity\Search;
use Jiminny\Models\User;
use Jiminny\Repositories\ElasticActivityRepository;
use Jiminny\VO\Repository\OnDemandActivitySearch\Criteria;
use Psr\Log\LoggerInterface;
class AskJiminnyReportActivityService
{
private const int DEFAULT_TOP_ACTIVITIES_COUNT = 100;
private const array DATE_FILTER_KEYS = [
ActivityActualDate::PARAM_START_DATE,
ActivityActualDate::PARAM_END_DATE,
ActivityUpdatedDate::PARAM_UPDATED_FROM,
ActivityUpdatedDate::PARAM_UPDATED_TO,
ClosingPeriodFilter::KEY_START_DATE,
ClosingPeriodFilter::KEY_END_DATE,
];
public function __construct(
private readonly ActivitySearch $activitySearch,
private readonly ElasticActivityRepository $elasticRepository,
private readonly LoggerInterface $logger,
) {
}
/**
* Fetch activity IDs for a saved search, passing its filters as-is to Criteria.
* Date filters stored on the saved search are excluded; if no other filters exist,
* no date constraint is applied — matching the behaviour of getContextForAskAnythingByFilter.
*
* @return string[] Activity IDs
*/
public function getActivityIdsForSavedSearch(
Search $savedSearch,
User $user,
?string $frequency = null,
): array {
$requestParams = $this->buildRequestParamsFromSearch($savedSearch, $user);
if ($frequency !== null) {
$dateRange = $this->calculateDateRangeForFrequency($frequency, $user);
if ($dateRange !== null) {
$requestParams[ActivityActualDate::PARAM_START_DATE] = $dateRange['start_date'];
$requestParams[ActivityActualDate::PARAM_END_DATE] = $dateRange['end_date'];
}
}
$criteria = Criteria::createFromRequest(
array_merge($requestParams, [
'limit' => self::DEFAULT_TOP_ACTIVITIES_COUNT,
'page' => 1,
'sequence_number' => 1,
]),
$user->getTimezone()
);
$filterSet = $this->activitySearch->getOnDemandPageFilterSet($criteria, $user);
$activityIds = $this->elasticRepository->onDemandSearchIdsOnly($user, $criteria, $filterSet);
$this->logger->info('[AskJiminnyReport] Fetched activity IDs for saved search', [
'saved_search_id' => $savedSearch->getId(),
'user_id' => $user->getId(),
'activity_count' => count($activityIds),
]);
return $activityIds;
}
private function buildRequestParamsFromSearch(Search $savedSearch, User $user): array
{
$params = [];
$arrayFilterKeys = $this->activitySearch->getArrayFilterKeys($user);
foreach ($savedSearch->getFilters() as $filter) {
$key = $filter->getFilterProperty();
$value = $filter->getFilterValue();
if (in_array($key, self::DATE_FILTER_KEYS, true)) {
continue;
}
if (isset($params[$key])) {
$params[$key][] = $value;
} elseif (in_array($key, $arrayFilterKeys, true)) {
$params[$key] = [$value];
} else {
$params[$key] = $value;
}
}
return $params;
}
/**
* @return array{start_date: string, end_date: string}|null
*/
private function calculateDateRangeForFrequency(string $frequency, User $user): ?array
{
$now = CarbonImmutable::now($user->getTimezone());
$range = match ($frequency) {
AutomatedReportsService::FREQUENCY_DAILY => [
$now->subDay()->startOfDay(),
$now->subDay()->endOfDay(),
],
AutomatedReportsService::FREQUENCY_WEEKLY => [
$now->subWeek()->startOfWeek(),
$now->subWeek()->endOfWeek(),
],
AutomatedReportsService::FREQUENCY_MONTHLY => [
$now->subMonthNoOverflow()->startOfMonth(),
$now->subMonthNoOverflow()->endOfMonth(),
],
AutomatedReportsService::FREQUENCY_QUARTERLY => [
$now->subQuarterNoOverflow()->startOfQuarter(),
$now->subQuarterNoOverflow()->endOfQuarter(),
],
default => null,
};
if ($range === null) {
return null;
}
return [
'start_date' => $range[0]->format('Y-m-d H:i:s'),
'end_date' => $range[1]->format('Y-m-d H:i:s'),
];
}
}
A
1
Select All
17009
17009
7341
42ec35c8-7a66-3dff-b558-9c75866ecd68
42ec35c8-7a66-3dff-b558-9c75866ecd68
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
Galya Dimitrova
Galya Dimitrova
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
[EMAIL]
[EMAIL]
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
<null>
<null>
/5f0f4810-7e77-4086-8f69-93429ae4d70b/avatars/LuhbAIJTol7ULglNYZz1HQ7FBKgLS09FdeBgrUd4.jpg
1
1
7341
<null>
<null>
<null>...
|
NULL
|