Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/docs/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ html.dark {
--color-background-tertiary: oklch(27.77% 0.0068 240);
--color-background-border: oklch(34% 0.0077 240);

--color-callout-info-bg: oklch(52% 0.22 290 / 12%);
--color-callout-info-border: oklch(52% 0.22 290 / 20%);
--color-callout-info-header-bg: oklch(52% 0.22 290 / 10%);
--color-callout-info-text: oklch(72% 0.18 290);
--color-callout-info-bg: oklch(53.91% 0.19 270 / 12%);
--color-callout-info-border: oklch(53.91% 0.19 270 / 20%);
--color-callout-info-header-bg: oklch(53.91% 0.19 270 / 10%);
--color-callout-info-text: oklch(68.4% 0.16 270);

--color-accent-yellow: oklch(81.1% 0.154 70.7);
--color-accent-green: oklch(75% 0.12 143.5);
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/components/api/smooth-scroll-link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function InternalLink({
}: InternalLinkProps) {
const isExternal = href?.startsWith('http');
const isAnchor = href?.startsWith('#');
const isDownloadable = href?.endsWith('.txt') || href?.endsWith('.md');
const isDownloadable = href?.endsWith('.txt') || href?.endsWith('.md') || href?.endsWith('.xml');

// External links or downloadable files - use regular <a> with target="_blank"
if (isExternal || isDownloadable) {
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/guides/updates.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ useUpdatesComponent: true

# Последние обновления

Новые методы в API и дополнения в уже существующих
<Info>Автоматически отслеживайте обновления: подпишитесь на [RSS-ленту](/feed.xml) или используйте [markdown-версию этой страницы](/guides/updates.md) для интеграции с инструментами и AI-агентами.</Info>

<!-- update:2026-02-24 -->

Expand Down
6 changes: 5 additions & 1 deletion apps/docs/public/guides/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ Authorization: Bearer <ACCESS_TOKEN>

### Скоупы персональных токенов

> **Внимание:** При создании персонального токена в интерфейсе Пачки отображаются только те скоупы, которые доступны вашей роли. Например, только **Владелец** видит все скоупы, включая `audit_events:read` и `chat_exports:read/write`. **Сотрудник** не видит скоупы управления другими пользователями (`users:create`, `users:update`, `users:delete`) и тегами (`group_tags:write`).


#### OAuthScope


Expand All @@ -108,7 +111,8 @@ Authorization: Bearer <ACCESS_TOKEN>
- **Файлы:** `files:read`, `uploads:write`
- **Вебхуки:** `webhooks:events:read`, `webhooks:events:delete`

Боты не имеют доступа к: `audit_events:read`, `chat_exports:read/write`, `users:create/update/delete`, `group_tags:write`, `files:write`, `webhooks:read/write`, `bots:write`.
> **Внимание:** Боты не имеют доступа к: `audit_events:read`, `chat_exports:read/write`, `users:create/update/delete`, `group_tags:write`, `webhooks:read/write`, `bots:write`.


## Ошибки авторизации

Expand Down
3 changes: 2 additions & 1 deletion apps/docs/public/guides/updates.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# Последние обновления

Новые методы в API и дополнения в уже существующих
> Автоматически отслеживайте обновления: подпишитесь на [RSS-ленту](/feed.xml) или используйте [markdown-версию этой страницы](/guides/updates.md) для интеграции с инструментами и AI-агентами.


<!-- update:2026-02-24 -->

Expand Down
9 changes: 7 additions & 2 deletions apps/docs/public/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1031,6 +1031,9 @@ Authorization: Bearer <ACCESS_TOKEN>

### Скоупы персональных токенов

> **Внимание:** При создании персонального токена в интерфейсе Пачки отображаются только те скоупы, которые доступны вашей роли. Например, только **Владелец** видит все скоупы, включая `audit_events:read` и `chat_exports:read/write`. **Сотрудник** не видит скоупы управления другими пользователями (`users:create`, `users:update`, `users:delete`) и тегами (`group_tags:write`).


#### OAuthScope


Expand All @@ -1046,7 +1049,8 @@ Authorization: Bearer <ACCESS_TOKEN>
- **Файлы:** `files:read`, `uploads:write`
- **Вебхуки:** `webhooks:events:read`, `webhooks:events:delete`

Боты не имеют доступа к: `audit_events:read`, `chat_exports:read/write`, `users:create/update/delete`, `group_tags:write`, `files:write`, `webhooks:read/write`, `bots:write`.
> **Внимание:** Боты не имеют доступа к: `audit_events:read`, `chat_exports:read/write`, `users:create/update/delete`, `group_tags:write`, `webhooks:read/write`, `bots:write`.


## Ошибки авторизации

Expand Down Expand Up @@ -2490,7 +2494,8 @@ echo $response;

# Последние обновления

Новые методы в API и дополнения в уже существующих
> Автоматически отслеживайте обновления: подпишитесь на [RSS-ленту](/feed.xml) или используйте [markdown-версию этой страницы](/guides/updates.md) для интеграции с инструментами и AI-агентами.


<!-- update:2026-02-24 -->

Expand Down
Loading