@yuntijs/arcadia-bff-sdk 1.2.29 → 1.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/sdk.d.ts +2 -2
- package/dist/esm/sdk.d.ts +2 -2
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -2615,11 +2615,11 @@ export type UpdatePluginInput = {
|
|
|
2615
2615
|
/** 描述信息 */
|
|
2616
2616
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2617
2617
|
/** 展示名,别名 */
|
|
2618
|
-
displayName
|
|
2618
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2619
2619
|
/** 插件是否已经开启,如果关闭,在所有的智能体都是不可用的 */
|
|
2620
2620
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2621
2621
|
/** 插件图标,base64格式图片 */
|
|
2622
|
-
icon
|
|
2622
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
2623
2623
|
/** 一些用于标记,选择的的标签,如果要更新,请传递完整内容 */
|
|
2624
2624
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2625
2625
|
/**
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -2615,11 +2615,11 @@ export type UpdatePluginInput = {
|
|
|
2615
2615
|
/** 描述信息 */
|
|
2616
2616
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2617
2617
|
/** 展示名,别名 */
|
|
2618
|
-
displayName
|
|
2618
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2619
2619
|
/** 插件是否已经开启,如果关闭,在所有的智能体都是不可用的 */
|
|
2620
2620
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2621
2621
|
/** 插件图标,base64格式图片 */
|
|
2622
|
-
icon
|
|
2622
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
2623
2623
|
/** 一些用于标记,选择的的标签,如果要更新,请传递完整内容 */
|
|
2624
2624
|
labels?: InputMaybe<Scalars['Map']['input']>;
|
|
2625
2625
|
/**
|