update document

pull/18581/head
AlexChimTrm 1 year ago
parent 52879186ed
commit 6c21b7629b

@ -869,13 +869,17 @@ Chat applications support session persistence, allowing previous chat history to
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
The user identifier, defined by the developer, must ensure uniqueness within the application The user identifier, defined by the developer, must ensure uniqueness within the application
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(Optional) The ID of the last record on the current page, default is null.
</Property>
<Property name='limit' type='int' key='limit'>
(Optional) How many records to return in one request, default is the most recent 20 entries. Maximum 100, minimum 1.
</Property>
</Properties> </Properties>
### Response ### Response
- `page` (int) Current page number
- `limit` (int) Number of items per page - `limit` (int) Number of items per page
- `total` (int) Total number of items
- `has_more` (bool) Whether there is a next page - `has_more` (bool) Whether there is a next page
- `data` (array[object]) List of variables - `data` (array[object]) List of variables
- `id` (string) Variable ID - `id` (string) Variable ID
@ -911,9 +915,7 @@ Chat applications support session persistence, allowing previous chat history to
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

@ -868,13 +868,17 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
ユーザー識別子。開発者によって定義されたルールに従い、アプリケーション内で一意である必要があります。 ユーザー識別子。開発者によって定義されたルールに従い、アプリケーション内で一意である必要があります。
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(Optional)現在のページの最後の記録のID、デフォルトはnullです。
</Property>
<Property name='limit' type='int' key='limit'>
(Optional)1回のリクエストで返す記録の数、デフォルトは最新の20件です。最大100、最小1。
</Property>
</Properties> </Properties>
### レスポンス ### レスポンス
- `page` (int) 現在のページ番号
- `limit` (int) ページごとのアイテム数 - `limit` (int) ページごとのアイテム数
- `total` (int) アイテムの総数
- `has_more` (bool) さらにアイテムがあるかどうか - `has_more` (bool) さらにアイテムがあるかどうか
- `data` (array[object]) 変数のリスト - `data` (array[object]) 変数のリスト
- `id` (string) 変数ID - `id` (string) 変数ID
@ -910,9 +914,7 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

@ -905,13 +905,17 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
用户标识符,由开发人员定义的规则,在应用程序内必须唯一。 用户标识符,由开发人员定义的规则,在应用程序内必须唯一。
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(选填)当前页最后面一条记录的 ID默认 null
</Property>
<Property name='limit' type='int' key='limit'>
(选填)一次请求返回多少条记录,默认 20 条,最大 100 条,最小 1 条。
</Property>
</Properties> </Properties>
### 响应 ### 响应
- `page` (int) 当前页码
- `limit` (int) 每页项目数 - `limit` (int) 每页项目数
- `total` (int) 项目总数
- `has_more` (bool) 是否有更多项目 - `has_more` (bool) 是否有更多项目
- `data` (array[object]) 变量列表 - `data` (array[object]) 变量列表
- `id` (string) 变量ID - `id` (string) 变量ID
@ -947,9 +951,7 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

@ -902,13 +902,17 @@ Chat applications support session persistence, allowing previous chat history to
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
The user identifier, defined by the developer, must ensure uniqueness within the application The user identifier, defined by the developer, must ensure uniqueness within the application
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(Optional) The ID of the last record on the current page, default is null.
</Property>
<Property name='limit' type='int' key='limit'>
(Optional) How many records to return in one request, default is the most recent 20 entries. Maximum 100, minimum 1.
</Property>
</Properties> </Properties>
### Response ### Response
- `page` (int) Current page number
- `limit` (int) Number of items per page - `limit` (int) Number of items per page
- `total` (int) Total number of items
- `has_more` (bool) Whether there is a next page - `has_more` (bool) Whether there is a next page
- `data` (array[object]) List of variables - `data` (array[object]) List of variables
- `id` (string) Variable ID - `id` (string) Variable ID
@ -944,9 +948,7 @@ Chat applications support session persistence, allowing previous chat history to
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

@ -900,13 +900,17 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
ユーザー識別子。開発者によって定義されたルールに従い、アプリケーション内で一意である必要があります。 ユーザー識別子。開発者によって定義されたルールに従い、アプリケーション内で一意である必要があります。
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(Optional)現在のページの最後のレコードのID、デフォルトはnullです。
</Property>
<Property name='limit' type='int' key='limit'>
(Optional)1回のリクエストで返すレコードの数、デフォルトは最新の20件です。最大100、最小1。
</Property>
</Properties> </Properties>
### レスポンス ### レスポンス
- `page` (int) 現在のページ番号
- `limit` (int) ページごとのアイテム数 - `limit` (int) ページごとのアイテム数
- `total` (int) アイテムの総数
- `has_more` (bool) さらにアイテムがあるかどうか - `has_more` (bool) さらにアイテムがあるかどうか
- `data` (array[object]) 変数のリスト - `data` (array[object]) 変数のリスト
- `id` (string) 変数ID - `id` (string) 変数ID
@ -942,9 +946,7 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

@ -917,13 +917,17 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
<Property name='user' type='string' key='user'> <Property name='user' type='string' key='user'>
用户标识符,由开发人员定义的规则,在应用程序内必须唯一。 用户标识符,由开发人员定义的规则,在应用程序内必须唯一。
</Property> </Property>
<Property name='last_id' type='string' key='last_id'>
(选填)当前页最后面一条记录的 ID默认 null
</Property>
<Property name='limit' type='int' key='limit'>
(选填)一次请求返回多少条记录,默认 20 条,最大 100 条,最小 1 条。
</Property>
</Properties> </Properties>
### 响应 ### 响应
- `page` (int) 当前页码
- `limit` (int) 每页项目数 - `limit` (int) 每页项目数
- `total` (int) 项目总数
- `has_more` (bool) 是否有更多项目 - `has_more` (bool) 是否有更多项目
- `data` (array[object]) 变量列表 - `data` (array[object]) 变量列表
- `id` (string) 变量ID - `id` (string) 变量ID
@ -959,9 +963,7 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
<CodeGroup title="Response"> <CodeGroup title="Response">
```json {{ title: 'Response' }} ```json {{ title: 'Response' }}
{ {
"page": 1,
"limit": 100, "limit": 100,
"total": 2,
"has_more": false, "has_more": false,
"data": [ "data": [
{ {

Loading…
Cancel
Save