mirror of
https://github.com/larksuite/cli.git
synced 2026-07-06 00:06:28 +08:00
Adds the apps domain to lark-cli for managing Miaoda (妙搭) applications: 6 shortcuts covering the full lifecycle (+create / +update / +list / +access-scope-set / +access-scope-get / +html-publish). Aligned with the OAPI v2 design — app_type enum (currently HTML), string scope enum (All / Tenant / Range), cursor pagination, in-memory tar.gz multipart publish flow. Namespace registered at /open-apis/spark/v1/ with spark:app.* scopes. --------- Co-authored-by: wangjiangwen-gif <286006750+wangjiangwen-gif@users.noreply.github.com>
11 lines
314 B
Go
11 lines
314 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
||
// SPDX-License-Identifier: MIT
|
||
|
||
package apps
|
||
|
||
// appsService 是 CLI 命令的 service 前缀(lark-cli apps ...)。
|
||
const appsService = "apps"
|
||
|
||
// apiBasePath is the registered OAPI prefix for the Miaoda apps domain.
|
||
const apiBasePath = "/open-apis/spark/v1"
|