@yuntijs/arcadia-bff-sdk 1.2.30 → 1.2.32
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 +4 -4
- package/dist/esm/sdk.d.ts +4 -4
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -151,7 +151,7 @@ export type ApplicationMetadata = {
|
|
|
151
151
|
__typename?: 'ApplicationMetadata';
|
|
152
152
|
/** 添加一些辅助性记录信息 */
|
|
153
153
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
154
|
-
/** Background,
|
|
154
|
+
/** Background, 图片ID */
|
|
155
155
|
background?: Maybe<Scalars['String']['output']>;
|
|
156
156
|
/** category:所属分类 */
|
|
157
157
|
category?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -166,7 +166,7 @@ export type ApplicationMetadata = {
|
|
|
166
166
|
description?: Maybe<Scalars['String']['output']>;
|
|
167
167
|
/** 展示名,别名 */
|
|
168
168
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
169
|
-
/** Icon
|
|
169
|
+
/** Icon,图片ID */
|
|
170
170
|
icon?: Maybe<Scalars['String']['output']>;
|
|
171
171
|
/** 应用id,为CR资源中的metadata.uid */
|
|
172
172
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -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
|
@@ -151,7 +151,7 @@ export type ApplicationMetadata = {
|
|
|
151
151
|
__typename?: 'ApplicationMetadata';
|
|
152
152
|
/** 添加一些辅助性记录信息 */
|
|
153
153
|
annotations?: Maybe<Scalars['Map']['output']>;
|
|
154
|
-
/** Background,
|
|
154
|
+
/** Background, 图片ID */
|
|
155
155
|
background?: Maybe<Scalars['String']['output']>;
|
|
156
156
|
/** category:所属分类 */
|
|
157
157
|
category?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -166,7 +166,7 @@ export type ApplicationMetadata = {
|
|
|
166
166
|
description?: Maybe<Scalars['String']['output']>;
|
|
167
167
|
/** 展示名,别名 */
|
|
168
168
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
169
|
-
/** Icon
|
|
169
|
+
/** Icon,图片ID */
|
|
170
170
|
icon?: Maybe<Scalars['String']['output']>;
|
|
171
171
|
/** 应用id,为CR资源中的metadata.uid */
|
|
172
172
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -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
|
/**
|