@alicloud/dms20250414 1.9.0 → 1.9.2

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.
Files changed (68) hide show
  1. package/dist/client.js +18 -0
  2. package/dist/client.js.map +1 -1
  3. package/dist/models/AddUserToDataAgentWorkspaceResponseBody.d.ts +0 -2
  4. package/dist/models/AddUserToDataAgentWorkspaceResponseBody.js +0 -2
  5. package/dist/models/AddUserToDataAgentWorkspaceResponseBody.js.map +1 -1
  6. package/dist/models/AgentServiceOrderSummaryVo.d.ts +19 -0
  7. package/dist/models/AgentServiceOrderSummaryVo.js +68 -0
  8. package/dist/models/AgentServiceOrderSummaryVo.js.map +1 -0
  9. package/dist/models/AgentServiceOrderVo.d.ts +26 -0
  10. package/dist/models/AgentServiceOrderVo.js +82 -0
  11. package/dist/models/AgentServiceOrderVo.js.map +1 -0
  12. package/dist/models/CreateCustomAgentRequest.d.ts +18 -0
  13. package/dist/models/CreateCustomAgentRequest.js +33 -1
  14. package/dist/models/CreateCustomAgentRequest.js.map +1 -1
  15. package/dist/models/CreateCustomAgentResponseBody.d.ts +18 -0
  16. package/dist/models/CreateCustomAgentResponseBody.js +33 -1
  17. package/dist/models/CreateCustomAgentResponseBody.js.map +1 -1
  18. package/dist/models/CreateCustomAgentShrinkRequest.d.ts +1 -0
  19. package/dist/models/CreateCustomAgentShrinkRequest.js +2 -0
  20. package/dist/models/CreateCustomAgentShrinkRequest.js.map +1 -1
  21. package/dist/models/DescribeCustomAgentResponseBody.d.ts +18 -0
  22. package/dist/models/DescribeCustomAgentResponseBody.js +33 -1
  23. package/dist/models/DescribeCustomAgentResponseBody.js.map +1 -1
  24. package/dist/models/DmsKnowledgeSearchOrderInfoDo.d.ts +20 -0
  25. package/dist/models/DmsKnowledgeSearchOrderInfoDo.js +70 -0
  26. package/dist/models/DmsKnowledgeSearchOrderInfoDo.js.map +1 -0
  27. package/dist/models/ListCustomAgentResponseBody.d.ts +18 -0
  28. package/dist/models/ListCustomAgentResponseBody.js +33 -1
  29. package/dist/models/ListCustomAgentResponseBody.js.map +1 -1
  30. package/dist/models/ModifyCustomAgentRequest.d.ts +18 -0
  31. package/dist/models/ModifyCustomAgentRequest.js +33 -1
  32. package/dist/models/ModifyCustomAgentRequest.js.map +1 -1
  33. package/dist/models/ModifyCustomAgentResponseBody.d.ts +18 -0
  34. package/dist/models/ModifyCustomAgentResponseBody.js +33 -1
  35. package/dist/models/ModifyCustomAgentResponseBody.js.map +1 -1
  36. package/dist/models/ModifyCustomAgentShrinkRequest.d.ts +1 -0
  37. package/dist/models/ModifyCustomAgentShrinkRequest.js +2 -0
  38. package/dist/models/ModifyCustomAgentShrinkRequest.js.map +1 -1
  39. package/dist/models/OpenClawInstanceVo.d.ts +56 -0
  40. package/dist/models/OpenClawInstanceVo.js +136 -0
  41. package/dist/models/OpenClawInstanceVo.js.map +1 -0
  42. package/dist/models/SendChatMessageRequest.d.ts +24 -0
  43. package/dist/models/SendChatMessageRequest.js +48 -1
  44. package/dist/models/SendChatMessageRequest.js.map +1 -1
  45. package/dist/models/SendChatMessageShrinkRequest.d.ts +1 -0
  46. package/dist/models/SendChatMessageShrinkRequest.js +2 -0
  47. package/dist/models/SendChatMessageShrinkRequest.js.map +1 -1
  48. package/dist/models/model.d.ts +12 -0
  49. package/dist/models/model.js +69 -44
  50. package/dist/models/model.js.map +1 -1
  51. package/package.json +1 -1
  52. package/src/client.ts +24 -0
  53. package/src/models/AddUserToDataAgentWorkspaceResponseBody.ts +0 -2
  54. package/src/models/AgentServiceOrderSummaryVo.ts +42 -0
  55. package/src/models/AgentServiceOrderVo.ts +63 -0
  56. package/src/models/CreateCustomAgentRequest.ts +41 -0
  57. package/src/models/CreateCustomAgentResponseBody.ts +41 -0
  58. package/src/models/CreateCustomAgentShrinkRequest.ts +3 -0
  59. package/src/models/DescribeCustomAgentResponseBody.ts +41 -0
  60. package/src/models/DmsKnowledgeSearchOrderInfoDo.ts +45 -0
  61. package/src/models/ListCustomAgentResponseBody.ts +41 -0
  62. package/src/models/ModifyCustomAgentRequest.ts +41 -0
  63. package/src/models/ModifyCustomAgentResponseBody.ts +41 -0
  64. package/src/models/ModifyCustomAgentShrinkRequest.ts +3 -0
  65. package/src/models/OpenClawInstanceVo.ts +136 -0
  66. package/src/models/SendChatMessageRequest.ts +62 -0
  67. package/src/models/SendChatMessageShrinkRequest.ts +3 -0
  68. package/src/models/model.ts +12 -0
@@ -2,6 +2,41 @@
2
2
  import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
+ export class ModifyCustomAgentResponseBodyDataCallbackConfig extends $dara.Model {
6
+ callbackArgs?: string;
7
+ callbackPrompt?: string;
8
+ callbackTime?: number;
9
+ toolId?: string;
10
+ type?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ callbackArgs: 'CallbackArgs',
14
+ callbackPrompt: 'CallbackPrompt',
15
+ callbackTime: 'CallbackTime',
16
+ toolId: 'ToolId',
17
+ type: 'Type',
18
+ };
19
+ }
20
+
21
+ static types(): { [key: string]: any } {
22
+ return {
23
+ callbackArgs: 'string',
24
+ callbackPrompt: 'string',
25
+ callbackTime: 'number',
26
+ toolId: 'string',
27
+ type: 'string',
28
+ };
29
+ }
30
+
31
+ validate() {
32
+ super.validate();
33
+ }
34
+
35
+ constructor(map?: { [key: string]: any }) {
36
+ super(map);
37
+ }
38
+ }
39
+
5
40
  export class ModifyCustomAgentResponseBodyDataExecutionConfig extends $dara.Model {
6
41
  /**
7
42
  * @example
@@ -132,6 +167,7 @@ export class ModifyCustomAgentResponseBodyData extends $dara.Model {
132
167
  * 20372822********
133
168
  */
134
169
  aliyunUid?: string;
170
+ callbackConfig?: ModifyCustomAgentResponseBodyDataCallbackConfig;
135
171
  /**
136
172
  * @example
137
173
  * HaoY*****
@@ -221,6 +257,7 @@ export class ModifyCustomAgentResponseBodyData extends $dara.Model {
221
257
  return {
222
258
  aliyunParentUid: 'AliyunParentUid',
223
259
  aliyunUid: 'AliyunUid',
260
+ callbackConfig: 'CallbackConfig',
224
261
  creatorUserName: 'CreatorUserName',
225
262
  customAgentId: 'CustomAgentId',
226
263
  DMSUnit: 'DMSUnit',
@@ -253,6 +290,7 @@ export class ModifyCustomAgentResponseBodyData extends $dara.Model {
253
290
  return {
254
291
  aliyunParentUid: 'string',
255
292
  aliyunUid: 'string',
293
+ callbackConfig: ModifyCustomAgentResponseBodyDataCallbackConfig,
256
294
  creatorUserName: 'string',
257
295
  customAgentId: 'string',
258
296
  DMSUnit: 'string',
@@ -282,6 +320,9 @@ export class ModifyCustomAgentResponseBodyData extends $dara.Model {
282
320
  }
283
321
 
284
322
  validate() {
323
+ if(this.callbackConfig && typeof (this.callbackConfig as any).validate === 'function') {
324
+ (this.callbackConfig as any).validate();
325
+ }
285
326
  if(this.executionConfig && typeof (this.executionConfig as any).validate === 'function') {
286
327
  (this.executionConfig as any).validate();
287
328
  }
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class ModifyCustomAgentShrinkRequest extends $dara.Model {
6
+ callbackConfigShrink?: string;
6
7
  /**
7
8
  * @remarks
8
9
  * This parameter is required.
@@ -33,6 +34,7 @@ export class ModifyCustomAgentShrinkRequest extends $dara.Model {
33
34
  workspaceId?: string;
34
35
  static names(): { [key: string]: string } {
35
36
  return {
37
+ callbackConfigShrink: 'CallbackConfig',
36
38
  customAgentId: 'CustomAgentId',
37
39
  DMSUnit: 'DMSUnit',
38
40
  dataJson: 'DataJson',
@@ -51,6 +53,7 @@ export class ModifyCustomAgentShrinkRequest extends $dara.Model {
51
53
 
52
54
  static types(): { [key: string]: any } {
53
55
  return {
56
+ callbackConfigShrink: 'string',
54
57
  customAgentId: 'string',
55
58
  DMSUnit: 'string',
56
59
  dataJson: 'string',
@@ -0,0 +1,136 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ /**
6
+ */
7
+ export class OpenClawInstanceVOImageInfo extends $dara.Model {
8
+ imageId?: number;
9
+ name?: string;
10
+ namespace?: string;
11
+ tag?: string;
12
+ versionDesc?: string;
13
+ static names(): { [key: string]: string } {
14
+ return {
15
+ imageId: 'ImageId',
16
+ name: 'Name',
17
+ namespace: 'Namespace',
18
+ tag: 'Tag',
19
+ versionDesc: 'VersionDesc',
20
+ };
21
+ }
22
+
23
+ static types(): { [key: string]: any } {
24
+ return {
25
+ imageId: 'number',
26
+ name: 'string',
27
+ namespace: 'string',
28
+ tag: 'string',
29
+ versionDesc: 'string',
30
+ };
31
+ }
32
+
33
+ validate() {
34
+ super.validate();
35
+ }
36
+
37
+ constructor(map?: { [key: string]: any }) {
38
+ super(map);
39
+ }
40
+ }
41
+
42
+ export class OpenClawInstanceVO extends $dara.Model {
43
+ aliyunAccountUid?: string;
44
+ authType?: string;
45
+ basicAuthPassword?: string;
46
+ basicAuthUsername?: string;
47
+ chargeType?: string;
48
+ cpu?: number;
49
+ gmtCreate?: string;
50
+ gmtModified?: string;
51
+ imageInfo?: OpenClawInstanceVOImageInfo;
52
+ instanceDesc?: string;
53
+ instanceId?: string;
54
+ instanceName?: string;
55
+ instanceRegion?: string;
56
+ lastActiveTime?: string;
57
+ lockTime?: string;
58
+ memorySize?: number;
59
+ openclawToken?: string;
60
+ ownerUid?: string;
61
+ publicDomain?: string;
62
+ status?: number;
63
+ statusDesc?: string;
64
+ statusMessage?: string;
65
+ trialExpireTime?: string;
66
+ variables?: string;
67
+ static names(): { [key: string]: string } {
68
+ return {
69
+ aliyunAccountUid: 'AliyunAccountUid',
70
+ authType: 'AuthType',
71
+ basicAuthPassword: 'BasicAuthPassword',
72
+ basicAuthUsername: 'BasicAuthUsername',
73
+ chargeType: 'ChargeType',
74
+ cpu: 'Cpu',
75
+ gmtCreate: 'GmtCreate',
76
+ gmtModified: 'GmtModified',
77
+ imageInfo: 'ImageInfo',
78
+ instanceDesc: 'InstanceDesc',
79
+ instanceId: 'InstanceId',
80
+ instanceName: 'InstanceName',
81
+ instanceRegion: 'InstanceRegion',
82
+ lastActiveTime: 'LastActiveTime',
83
+ lockTime: 'LockTime',
84
+ memorySize: 'MemorySize',
85
+ openclawToken: 'OpenclawToken',
86
+ ownerUid: 'OwnerUid',
87
+ publicDomain: 'PublicDomain',
88
+ status: 'Status',
89
+ statusDesc: 'StatusDesc',
90
+ statusMessage: 'StatusMessage',
91
+ trialExpireTime: 'TrialExpireTime',
92
+ variables: 'Variables',
93
+ };
94
+ }
95
+
96
+ static types(): { [key: string]: any } {
97
+ return {
98
+ aliyunAccountUid: 'string',
99
+ authType: 'string',
100
+ basicAuthPassword: 'string',
101
+ basicAuthUsername: 'string',
102
+ chargeType: 'string',
103
+ cpu: 'number',
104
+ gmtCreate: 'string',
105
+ gmtModified: 'string',
106
+ imageInfo: OpenClawInstanceVOImageInfo,
107
+ instanceDesc: 'string',
108
+ instanceId: 'string',
109
+ instanceName: 'string',
110
+ instanceRegion: 'string',
111
+ lastActiveTime: 'string',
112
+ lockTime: 'string',
113
+ memorySize: 'number',
114
+ openclawToken: 'string',
115
+ ownerUid: 'string',
116
+ publicDomain: 'string',
117
+ status: 'number',
118
+ statusDesc: 'string',
119
+ statusMessage: 'string',
120
+ trialExpireTime: 'string',
121
+ variables: 'string',
122
+ };
123
+ }
124
+
125
+ validate() {
126
+ if(this.imageInfo && typeof (this.imageInfo as any).validate === 'function') {
127
+ (this.imageInfo as any).validate();
128
+ }
129
+ super.validate();
130
+ }
131
+
132
+ constructor(map?: { [key: string]: any }) {
133
+ super(map);
134
+ }
135
+ }
136
+
@@ -98,6 +98,62 @@ export class SendChatMessageRequestDataSource extends $dara.Model {
98
98
  }
99
99
  }
100
100
 
101
+ export class SendChatMessageRequestDataSources extends $dara.Model {
102
+ dataSourceId?: string;
103
+ dataSourceType?: string;
104
+ database?: string;
105
+ dbName?: string;
106
+ dmsDatabaseId?: string;
107
+ dmsInstanceId?: string;
108
+ engine?: string;
109
+ fileId?: string;
110
+ location?: string;
111
+ regionId?: string;
112
+ tables?: string[];
113
+ static names(): { [key: string]: string } {
114
+ return {
115
+ dataSourceId: 'DataSourceId',
116
+ dataSourceType: 'DataSourceType',
117
+ database: 'Database',
118
+ dbName: 'DbName',
119
+ dmsDatabaseId: 'DmsDatabaseId',
120
+ dmsInstanceId: 'DmsInstanceId',
121
+ engine: 'Engine',
122
+ fileId: 'FileId',
123
+ location: 'Location',
124
+ regionId: 'RegionId',
125
+ tables: 'Tables',
126
+ };
127
+ }
128
+
129
+ static types(): { [key: string]: any } {
130
+ return {
131
+ dataSourceId: 'string',
132
+ dataSourceType: 'string',
133
+ database: 'string',
134
+ dbName: 'string',
135
+ dmsDatabaseId: 'string',
136
+ dmsInstanceId: 'string',
137
+ engine: 'string',
138
+ fileId: 'string',
139
+ location: 'string',
140
+ regionId: 'string',
141
+ tables: { 'type': 'array', 'itemType': 'string' },
142
+ };
143
+ }
144
+
145
+ validate() {
146
+ if(Array.isArray(this.tables)) {
147
+ $dara.Model.validateArray(this.tables);
148
+ }
149
+ super.validate();
150
+ }
151
+
152
+ constructor(map?: { [key: string]: any }) {
153
+ super(map);
154
+ }
155
+ }
156
+
101
157
  export class SendChatMessageRequestSessionConfig extends $dara.Model {
102
158
  /**
103
159
  * @example
@@ -157,6 +213,7 @@ export class SendChatMessageRequest extends $dara.Model {
157
213
  */
158
214
  DMSUnit?: string;
159
215
  dataSource?: SendChatMessageRequestDataSource;
216
+ dataSources?: SendChatMessageRequestDataSources[];
160
217
  /**
161
218
  * @remarks
162
219
  * This parameter is required.
@@ -200,6 +257,7 @@ export class SendChatMessageRequest extends $dara.Model {
200
257
  agentId: 'AgentId',
201
258
  DMSUnit: 'DMSUnit',
202
259
  dataSource: 'DataSource',
260
+ dataSources: 'DataSources',
203
261
  message: 'Message',
204
262
  messageType: 'MessageType',
205
263
  parentSessionId: 'ParentSessionId',
@@ -216,6 +274,7 @@ export class SendChatMessageRequest extends $dara.Model {
216
274
  agentId: 'string',
217
275
  DMSUnit: 'string',
218
276
  dataSource: SendChatMessageRequestDataSource,
277
+ dataSources: { 'type': 'array', 'itemType': SendChatMessageRequestDataSources },
219
278
  message: 'string',
220
279
  messageType: 'string',
221
280
  parentSessionId: 'string',
@@ -231,6 +290,9 @@ export class SendChatMessageRequest extends $dara.Model {
231
290
  if(this.dataSource && typeof (this.dataSource as any).validate === 'function') {
232
291
  (this.dataSource as any).validate();
233
292
  }
293
+ if(Array.isArray(this.dataSources)) {
294
+ $dara.Model.validateArray(this.dataSources);
295
+ }
234
296
  if(this.sessionConfig && typeof (this.sessionConfig as any).validate === 'function') {
235
297
  (this.sessionConfig as any).validate();
236
298
  }
@@ -17,6 +17,7 @@ export class SendChatMessageShrinkRequest extends $dara.Model {
17
17
  */
18
18
  DMSUnit?: string;
19
19
  dataSourceShrink?: string;
20
+ dataSourcesShrink?: string;
20
21
  /**
21
22
  * @remarks
22
23
  * This parameter is required.
@@ -60,6 +61,7 @@ export class SendChatMessageShrinkRequest extends $dara.Model {
60
61
  agentId: 'AgentId',
61
62
  DMSUnit: 'DMSUnit',
62
63
  dataSourceShrink: 'DataSource',
64
+ dataSourcesShrink: 'DataSources',
63
65
  message: 'Message',
64
66
  messageType: 'MessageType',
65
67
  parentSessionId: 'ParentSessionId',
@@ -76,6 +78,7 @@ export class SendChatMessageShrinkRequest extends $dara.Model {
76
78
  agentId: 'string',
77
79
  DMSUnit: 'string',
78
80
  dataSourceShrink: 'string',
81
+ dataSourcesShrink: 'string',
79
82
  message: 'string',
80
83
  messageType: 'string',
81
84
  parentSessionId: 'string',
@@ -1,9 +1,12 @@
1
+ export { OpenClawInstanceVOImageInfo } from './OpenClawInstanceVo';
1
2
  export { AddUserToDataAgentWorkspaceResponseBodyData } from './AddUserToDataAgentWorkspaceResponseBody';
2
3
  export { CreateAirflowResponseBodyRoot } from './CreateAirflowResponseBody';
3
4
  export { CreateAirflowLoginTokenResponseBodyData } from './CreateAirflowLoginTokenResponseBody';
5
+ export { CreateCustomAgentRequestCallbackConfig } from './CreateCustomAgentRequest';
4
6
  export { CreateCustomAgentRequestExecutionConfig } from './CreateCustomAgentRequest';
5
7
  export { CreateCustomAgentRequestKnowledgeConfigList } from './CreateCustomAgentRequest';
6
8
  export { CreateCustomAgentRequestScheduleTaskConfig } from './CreateCustomAgentRequest';
9
+ export { CreateCustomAgentResponseBodyDataCallbackConfig } from './CreateCustomAgentResponseBody';
7
10
  export { CreateCustomAgentResponseBodyDataExecutionConfig } from './CreateCustomAgentResponseBody';
8
11
  export { CreateCustomAgentResponseBodyDataKnowledgeConfigList } from './CreateCustomAgentResponseBody';
9
12
  export { CreateCustomAgentResponseBodyDataScheduleTaskConfig } from './CreateCustomAgentResponseBody';
@@ -16,6 +19,7 @@ export { DeleteAirflowResponseBodyRootResponses } from './DeleteAirflowResponseB
16
19
  export { DeleteAirflowResponseBodyRoot } from './DeleteAirflowResponseBody';
17
20
  export { DeleteCustomAgentResponseBodyData } from './DeleteCustomAgentResponseBody';
18
21
  export { DeleteFileUploadResponseBodyData } from './DeleteFileUploadResponseBody';
22
+ export { DescribeCustomAgentResponseBodyDataCallbackConfig } from './DescribeCustomAgentResponseBody';
19
23
  export { DescribeCustomAgentResponseBodyDataExecutionConfig } from './DescribeCustomAgentResponseBody';
20
24
  export { DescribeCustomAgentResponseBodyDataKnowledgeConfigList } from './DescribeCustomAgentResponseBody';
21
25
  export { DescribeCustomAgentResponseBodyDataScheduleTaskConfig } from './DescribeCustomAgentResponseBody';
@@ -31,6 +35,7 @@ export { GetDataAgentWorkspaceInfoResponseBodyData } from './GetDataAgentWorkspa
31
35
  export { GetNotebookTaskStatusResponseBodyData } from './GetNotebookTaskStatusResponseBody';
32
36
  export { ListAirflowsResponseBodyRootList } from './ListAirflowsResponseBody';
33
37
  export { ListAirflowsResponseBodyRoot } from './ListAirflowsResponseBody';
38
+ export { ListCustomAgentResponseBodyDataContentCallbackConfig } from './ListCustomAgentResponseBody';
34
39
  export { ListCustomAgentResponseBodyDataContentExecutionConfig } from './ListCustomAgentResponseBody';
35
40
  export { ListCustomAgentResponseBodyDataContentKnowledgeConfigList } from './ListCustomAgentResponseBody';
36
41
  export { ListCustomAgentResponseBodyDataContentScheduleTaskConfig } from './ListCustomAgentResponseBody';
@@ -46,20 +51,25 @@ export { ListDataCenterDatabaseResponseBodyData } from './ListDataCenterDatabase
46
51
  export { ListDataCenterTableResponseBodyDataContent } from './ListDataCenterTableResponseBody';
47
52
  export { ListDataCenterTableResponseBodyData } from './ListDataCenterTableResponseBody';
48
53
  export { ListFileUploadResponseBodyData } from './ListFileUploadResponseBody';
54
+ export { ModifyCustomAgentRequestCallbackConfig } from './ModifyCustomAgentRequest';
49
55
  export { ModifyCustomAgentRequestExecutionConfig } from './ModifyCustomAgentRequest';
50
56
  export { ModifyCustomAgentRequestKnowledgeConfigList } from './ModifyCustomAgentRequest';
51
57
  export { ModifyCustomAgentRequestScheduleTaskConfig } from './ModifyCustomAgentRequest';
58
+ export { ModifyCustomAgentResponseBodyDataCallbackConfig } from './ModifyCustomAgentResponseBody';
52
59
  export { ModifyCustomAgentResponseBodyDataExecutionConfig } from './ModifyCustomAgentResponseBody';
53
60
  export { ModifyCustomAgentResponseBodyDataKnowledgeConfigList } from './ModifyCustomAgentResponseBody';
54
61
  export { ModifyCustomAgentResponseBodyDataScheduleTaskConfig } from './ModifyCustomAgentResponseBody';
55
62
  export { ModifyCustomAgentResponseBodyData } from './ModifyCustomAgentResponseBody';
56
63
  export { OperateCustomAgentResponseBodyData } from './OperateCustomAgentResponseBody';
57
64
  export { SendChatMessageRequestDataSource } from './SendChatMessageRequest';
65
+ export { SendChatMessageRequestDataSources } from './SendChatMessageRequest';
58
66
  export { SendChatMessageRequestSessionConfig } from './SendChatMessageRequest';
59
67
  export { SendChatMessageResponseBodyData } from './SendChatMessageResponseBody';
60
68
  export { UpdateAirflowResponseBodyRoot } from './UpdateAirflowResponseBody';
61
69
  export { UpdateDataAgentSpaceInfoResponseBodyData } from './UpdateDataAgentSpaceInfoResponseBody';
62
70
  export { UpdateDataAgentWorkspaceMemberRoleResponseBodyData } from './UpdateDataAgentWorkspaceMemberRoleResponseBody';
71
+ export { AgentServiceOrderSummaryVO } from './AgentServiceOrderSummaryVo';
72
+ export { AgentServiceOrderVO } from './AgentServiceOrderVo';
63
73
  export { DLCatalog } from './Dlcatalog';
64
74
  export { DLColumn } from './Dlcolumn';
65
75
  export { DLDatabase } from './Dldatabase';
@@ -75,6 +85,7 @@ export { DLStorageDescriptor } from './DlstorageDescriptor';
75
85
  export { DLTable } from './Dltable';
76
86
  export { DLTableInput } from './DltableInput';
77
87
  export { DLTablebaseInfo } from './DltablebaseInfo';
88
+ export { DmsKnowledgeSearchOrderInfoDO } from './DmsKnowledgeSearchOrderInfoDo';
78
89
  export { ForeignInstance } from './ForeignInstance';
79
90
  export { ForeignInstanceCredInfo } from './ForeignInstanceCredInfo';
80
91
  export { OneMetaDatabaseObject } from './OneMetaDatabaseObject';
@@ -83,6 +94,7 @@ export { OneMetaTableColumn } from './OneMetaTableColumn';
83
94
  export { OneMetaTableColumnEngineMeta } from './OneMetaTableColumnEngineMeta';
84
95
  export { OneMetaTableEngineMeta } from './OneMetaTableEngineMeta';
85
96
  export { OneMetaTableIndex } from './OneMetaTableIndex';
97
+ export { OpenClawInstanceVO } from './OpenClawInstanceVo';
86
98
  export { PartitionError } from './PartitionError';
87
99
  export { AddUserToDataAgentWorkspaceRequest } from './AddUserToDataAgentWorkspaceRequest';
88
100
  export { AddUserToDataAgentWorkspaceResponseBody } from './AddUserToDataAgentWorkspaceResponseBody';