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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Built-in shortcuts for commonly used Lark APIs, enabling concise commands like `
- **Drive** — Upload, download, and manage cloud documents.
- **Docs** — Work with Lark documents.
- **Sheets** — Interact with spreadsheets.
- **Base (Bitable)** — Manage multi-dimensional tables.
- **Base** — Manage multi-dimensional tables.
- **Calendar** — Create and manage calendar events.
- **Mail** — Send and manage emails.
- **Contact** — Look up users and departments.
Expand Down
2 changes: 1 addition & 1 deletion shortcuts/base/base_data_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
var BaseDataQuery = common.Shortcut{
Service: "base",
Command: "+data-query",
Description: "Query and analyze Bitable data with JSON DSL (aggregation, filter, sort)",
Description: "Query and analyze Base data with JSON DSL (aggregation, filter, sort)",
Risk: "read",
Scopes: []string{"base:table:read"},
AuthTypes: authTypes(),
Expand Down
4 changes: 2 additions & 2 deletions skills/lark-base/references/formula-field-guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bitable Formula Writing Guide
# Base Formula Writing Guide

## Mandatory Read Acknowledgement

Expand Down Expand Up @@ -121,7 +121,7 @@ When using comparison operators (`>`, `>=`, `<`, `<=`, `=`, `!=`), **both sides

## Section 4: Operators

Bitable formulas **only allow** the following operators. `like`, `in`, `<>`, `**`, `^` etc. are prohibited.
Base formulas **only allow** the following operators. `like`, `in`, `<>`, `**`, `^` etc. are prohibited.

| Category | Operators | Description |
| ------------- | -------------------------- | -------------------------------------------------------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion skills/lark-base/references/lookup-field-guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bitable Lookup Field Configuration Guide
# Base Lookup Field Configuration Guide

## Mandatory Read Acknowledgement

Expand Down
2 changes: 1 addition & 1 deletion skills/lark-doc/references/lark-doc-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ lark-cli docs +create --title "空白画板示例" --markdown '<whiteboard type=
- 读取时只能获取 token,可通过 media-download 查看内容,无法直接读出画板内部内容
- 画板编辑:详见 [SKILL.md](../SKILL.md#重要说明画板编辑)

### 多维表格(Bitable
### 多维表格(Base

```html
<bitable view="table"/>
Expand Down
Loading