@saltify/milky-types 1.0.0-draft.12 → 1.0.0-draft.14

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.
@@ -1,11 +1,13 @@
1
- import { ZodType } from 'zod';
1
+ import { t as types } from './index-K0tPH0xY.js';
2
+ import 'zod';
2
3
 
3
- declare const commonStructs: Record<string, ZodType>;
4
+ type TypeName = keyof typeof types;
5
+ declare const commonStructs: TypeName[];
4
6
  interface Api {
5
7
  endpoint: string;
6
8
  description: string;
7
- inputStruct: ZodType;
8
- outputStruct: ZodType;
9
+ inputStruct: TypeName | null;
10
+ outputStruct: TypeName | null;
9
11
  }
10
12
  interface ApiCategory {
11
13
  name: string;
@@ -1,123 +1,22 @@
1
- import {
2
- AcceptFriendRequestInput,
3
- AcceptGroupInvitationInput,
4
- AcceptGroupRequestInput,
5
- CreateGroupFolderInput,
6
- CreateGroupFolderOutput,
7
- DeleteGroupAnnouncementInput,
8
- DeleteGroupFileInput,
9
- DeleteGroupFolderInput,
10
- Event,
11
- FriendCategoryEntity,
12
- FriendEntity,
13
- FriendRequest,
14
- GetCSRFTokenOutput,
15
- GetCookiesInput,
16
- GetCookiesOutput,
17
- GetForwardedMessagesInput,
18
- GetForwardedMessagesOutput,
19
- GetFriendInfoInput,
20
- GetFriendInfoOutput,
21
- GetFriendListInput,
22
- GetFriendListOutput,
23
- GetFriendRequestsInput,
24
- GetFriendRequestsOutput,
25
- GetGroupAnnouncementListInput,
26
- GetGroupAnnouncementListOutput,
27
- GetGroupEssenceMessagesInput,
28
- GetGroupEssenceMessagesOutput,
29
- GetGroupFileDownloadUrlInput,
30
- GetGroupFileDownloadUrlOutput,
31
- GetGroupFilesInput,
32
- GetGroupFilesOutput,
33
- GetGroupInfoInput,
34
- GetGroupInfoOutput,
35
- GetGroupListInput,
36
- GetGroupListOutput,
37
- GetGroupMemberInfoInput,
38
- GetGroupMemberInfoOutput,
39
- GetGroupMemberListInput,
40
- GetGroupMemberListOutput,
41
- GetGroupNotificationsInput,
42
- GetGroupNotificationsOutput,
43
- GetHistoryMessagesInput,
44
- GetHistoryMessagesOutput,
45
- GetImplInfoOutput,
46
- GetLoginInfoOutput,
47
- GetMessageInput,
48
- GetMessageOutput,
49
- GetPrivateFileDownloadUrlInput,
50
- GetPrivateFileDownloadUrlOutput,
51
- GetResourceTempUrlInput,
52
- GetResourceTempUrlOutput,
53
- GetUserProfileInput,
54
- GetUserProfileOutput,
55
- GroupAnnouncementEntity,
56
- GroupEntity,
57
- GroupEssenceMessage,
58
- GroupFileEntity,
59
- GroupFolderEntity,
60
- GroupMemberEntity,
61
- GroupNotification,
62
- IncomingForwardedMessage,
63
- IncomingMessage,
64
- IncomingSegment,
65
- KickGroupMemberInput,
66
- MarkMessageAsReadInput,
67
- MoveGroupFileInput,
68
- OutgoingForwardedMessage,
69
- OutgoingSegment,
70
- QuitGroupInput,
71
- RecallGroupMessageInput,
72
- RecallPrivateMessageInput,
73
- RejectFriendRequestInput,
74
- RejectGroupInvitationInput,
75
- RejectGroupRequestInput,
76
- RenameGroupFileInput,
77
- RenameGroupFolderInput,
78
- SendFriendNudgeInput,
79
- SendGroupAnnouncementInput,
80
- SendGroupMessageInput,
81
- SendGroupMessageOutput,
82
- SendGroupMessageReactionInput,
83
- SendGroupNudgeInput,
84
- SendPrivateMessageInput,
85
- SendPrivateMessageOutput,
86
- SendProfileLikeInput,
87
- SetGroupAvatarInput,
88
- SetGroupEssenceMessageInput,
89
- SetGroupMemberAdminInput,
90
- SetGroupMemberCardInput,
91
- SetGroupMemberMuteInput,
92
- SetGroupMemberSpecialTitleInput,
93
- SetGroupNameInput,
94
- SetGroupWholeMuteInput,
95
- UploadGroupFileInput,
96
- UploadGroupFileOutput,
97
- UploadPrivateFileInput,
98
- UploadPrivateFileOutput
99
- } from "./chunk-7VNPFD7W.js";
100
-
101
1
  // src/api-endpoints.ts
102
- import { z } from "zod";
103
- var commonStructs = {
104
- Event,
105
- FriendEntity,
106
- FriendCategoryEntity,
107
- GroupEntity,
108
- GroupMemberEntity,
109
- GroupAnnouncementEntity,
110
- GroupFileEntity,
111
- GroupFolderEntity,
112
- FriendRequest,
113
- GroupNotification,
114
- IncomingMessage,
115
- IncomingForwardedMessage,
116
- GroupEssenceMessage,
117
- IncomingSegment,
118
- OutgoingForwardedMessage,
119
- OutgoingSegment
120
- };
2
+ var commonStructs = [
3
+ "Event",
4
+ "FriendEntity",
5
+ "FriendCategoryEntity",
6
+ "GroupEntity",
7
+ "GroupMemberEntity",
8
+ "GroupAnnouncementEntity",
9
+ "GroupFileEntity",
10
+ "GroupFolderEntity",
11
+ "FriendRequest",
12
+ "GroupNotification",
13
+ "IncomingMessage",
14
+ "IncomingForwardedMessage",
15
+ "GroupEssenceMessage",
16
+ "IncomingSegment",
17
+ "OutgoingForwardedMessage",
18
+ "OutgoingSegment"
19
+ ];
121
20
  var apiCategories = {
122
21
  system: {
123
22
  name: "\u7CFB\u7EDF API",
@@ -125,68 +24,68 @@ var apiCategories = {
125
24
  {
126
25
  endpoint: "get_login_info",
127
26
  description: "\u83B7\u53D6\u767B\u5F55\u4FE1\u606F",
128
- inputStruct: z.object({}),
129
- outputStruct: GetLoginInfoOutput
27
+ inputStruct: null,
28
+ outputStruct: "GetLoginInfoOutput"
130
29
  },
131
30
  {
132
31
  endpoint: "get_impl_info",
133
32
  description: "\u83B7\u53D6\u534F\u8BAE\u7AEF\u4FE1\u606F",
134
- inputStruct: z.object({}),
135
- outputStruct: GetImplInfoOutput
33
+ inputStruct: null,
34
+ outputStruct: "GetImplInfoOutput"
136
35
  },
137
36
  {
138
37
  endpoint: "get_user_profile",
139
38
  description: "\u83B7\u53D6\u7528\u6237\u4E2A\u4EBA\u4FE1\u606F",
140
- inputStruct: GetUserProfileInput,
141
- outputStruct: GetUserProfileOutput
39
+ inputStruct: "GetUserProfileInput",
40
+ outputStruct: "GetUserProfileOutput"
142
41
  },
143
42
  {
144
43
  endpoint: "get_friend_list",
145
44
  description: "\u83B7\u53D6\u597D\u53CB\u5217\u8868",
146
- inputStruct: GetFriendListInput,
147
- outputStruct: GetFriendListOutput
45
+ inputStruct: "GetFriendListInput",
46
+ outputStruct: "GetFriendListOutput"
148
47
  },
149
48
  {
150
49
  endpoint: "get_friend_info",
151
50
  description: "\u83B7\u53D6\u597D\u53CB\u4FE1\u606F",
152
- inputStruct: GetFriendInfoInput,
153
- outputStruct: GetFriendInfoOutput
51
+ inputStruct: "GetFriendInfoInput",
52
+ outputStruct: "GetFriendInfoOutput"
154
53
  },
155
54
  {
156
55
  endpoint: "get_group_list",
157
56
  description: "\u83B7\u53D6\u7FA4\u5217\u8868",
158
- inputStruct: GetGroupListInput,
159
- outputStruct: GetGroupListOutput
57
+ inputStruct: "GetGroupListInput",
58
+ outputStruct: "GetGroupListOutput"
160
59
  },
161
60
  {
162
61
  endpoint: "get_group_info",
163
62
  description: "\u83B7\u53D6\u7FA4\u4FE1\u606F",
164
- inputStruct: GetGroupInfoInput,
165
- outputStruct: GetGroupInfoOutput
63
+ inputStruct: "GetGroupInfoInput",
64
+ outputStruct: "GetGroupInfoOutput"
166
65
  },
167
66
  {
168
67
  endpoint: "get_group_member_list",
169
68
  description: "\u83B7\u53D6\u7FA4\u6210\u5458\u5217\u8868",
170
- inputStruct: GetGroupMemberListInput,
171
- outputStruct: GetGroupMemberListOutput
69
+ inputStruct: "GetGroupMemberListInput",
70
+ outputStruct: "GetGroupMemberListOutput"
172
71
  },
173
72
  {
174
73
  endpoint: "get_group_member_info",
175
74
  description: "\u83B7\u53D6\u7FA4\u6210\u5458\u4FE1\u606F",
176
- inputStruct: GetGroupMemberInfoInput,
177
- outputStruct: GetGroupMemberInfoOutput
75
+ inputStruct: "GetGroupMemberInfoInput",
76
+ outputStruct: "GetGroupMemberInfoOutput"
178
77
  },
179
78
  {
180
79
  endpoint: "get_cookies",
181
80
  description: "\u83B7\u53D6 Cookies",
182
- inputStruct: GetCookiesInput,
183
- outputStruct: GetCookiesOutput
81
+ inputStruct: "GetCookiesInput",
82
+ outputStruct: "GetCookiesOutput"
184
83
  },
185
84
  {
186
85
  endpoint: "get_csrf_token",
187
86
  description: "\u83B7\u53D6 CSRF Token",
188
- inputStruct: z.object({}),
189
- outputStruct: GetCSRFTokenOutput
87
+ inputStruct: null,
88
+ outputStruct: "GetCSRFTokenOutput"
190
89
  }
191
90
  ]
192
91
  },
@@ -196,56 +95,56 @@ var apiCategories = {
196
95
  {
197
96
  endpoint: "send_private_message",
198
97
  description: "\u53D1\u9001\u79C1\u804A\u6D88\u606F",
199
- inputStruct: SendPrivateMessageInput,
200
- outputStruct: SendPrivateMessageOutput
98
+ inputStruct: "SendPrivateMessageInput",
99
+ outputStruct: "SendPrivateMessageOutput"
201
100
  },
202
101
  {
203
102
  endpoint: "send_group_message",
204
103
  description: "\u53D1\u9001\u7FA4\u804A\u6D88\u606F",
205
- inputStruct: SendGroupMessageInput,
206
- outputStruct: SendGroupMessageOutput
104
+ inputStruct: "SendGroupMessageInput",
105
+ outputStruct: "SendGroupMessageOutput"
207
106
  },
208
107
  {
209
108
  endpoint: "recall_private_message",
210
109
  description: "\u64A4\u56DE\u79C1\u804A\u6D88\u606F",
211
- inputStruct: RecallPrivateMessageInput,
212
- outputStruct: z.void()
110
+ inputStruct: "RecallPrivateMessageInput",
111
+ outputStruct: null
213
112
  },
214
113
  {
215
114
  endpoint: "recall_group_message",
216
115
  description: "\u64A4\u56DE\u7FA4\u804A\u6D88\u606F",
217
- inputStruct: RecallGroupMessageInput,
218
- outputStruct: z.void()
116
+ inputStruct: "RecallGroupMessageInput",
117
+ outputStruct: null
219
118
  },
220
119
  {
221
120
  endpoint: "get_message",
222
121
  description: "\u83B7\u53D6\u6D88\u606F",
223
- inputStruct: GetMessageInput,
224
- outputStruct: GetMessageOutput
122
+ inputStruct: "GetMessageInput",
123
+ outputStruct: "GetMessageOutput"
225
124
  },
226
125
  {
227
126
  endpoint: "get_history_messages",
228
127
  description: "\u83B7\u53D6\u5386\u53F2\u6D88\u606F",
229
- inputStruct: GetHistoryMessagesInput,
230
- outputStruct: GetHistoryMessagesOutput
128
+ inputStruct: "GetHistoryMessagesInput",
129
+ outputStruct: "GetHistoryMessagesOutput"
231
130
  },
232
131
  {
233
132
  endpoint: "get_resource_temp_url",
234
133
  description: "\u83B7\u53D6\u4E34\u65F6\u8D44\u6E90\u94FE\u63A5",
235
- inputStruct: GetResourceTempUrlInput,
236
- outputStruct: GetResourceTempUrlOutput
134
+ inputStruct: "GetResourceTempUrlInput",
135
+ outputStruct: "GetResourceTempUrlOutput"
237
136
  },
238
137
  {
239
138
  endpoint: "get_forwarded_messages",
240
139
  description: "\u83B7\u53D6\u5408\u5E76\u8F6C\u53D1\u6D88\u606F\u5185\u5BB9",
241
- inputStruct: GetForwardedMessagesInput,
242
- outputStruct: GetForwardedMessagesOutput
140
+ inputStruct: "GetForwardedMessagesInput",
141
+ outputStruct: "GetForwardedMessagesOutput"
243
142
  },
244
143
  {
245
144
  endpoint: "mark_message_as_read",
246
145
  description: "\u6807\u8BB0\u6D88\u606F\u4E3A\u5DF2\u8BFB",
247
- inputStruct: MarkMessageAsReadInput,
248
- outputStruct: z.void()
146
+ inputStruct: "MarkMessageAsReadInput",
147
+ outputStruct: null
249
148
  }
250
149
  ]
251
150
  },
@@ -255,32 +154,32 @@ var apiCategories = {
255
154
  {
256
155
  endpoint: "send_friend_nudge",
257
156
  description: "\u53D1\u9001\u597D\u53CB\u6233\u4E00\u6233",
258
- inputStruct: SendFriendNudgeInput,
259
- outputStruct: z.void()
157
+ inputStruct: "SendFriendNudgeInput",
158
+ outputStruct: null
260
159
  },
261
160
  {
262
161
  endpoint: "send_profile_like",
263
162
  description: "\u53D1\u9001\u540D\u7247\u70B9\u8D5E",
264
- inputStruct: SendProfileLikeInput,
265
- outputStruct: z.void()
163
+ inputStruct: "SendProfileLikeInput",
164
+ outputStruct: null
266
165
  },
267
166
  {
268
167
  endpoint: "get_friend_requests",
269
168
  description: "\u83B7\u53D6\u597D\u53CB\u8BF7\u6C42\u5217\u8868",
270
- inputStruct: GetFriendRequestsInput,
271
- outputStruct: GetFriendRequestsOutput
169
+ inputStruct: "GetFriendRequestsInput",
170
+ outputStruct: "GetFriendRequestsOutput"
272
171
  },
273
172
  {
274
173
  endpoint: "accept_friend_request",
275
174
  description: "\u540C\u610F\u597D\u53CB\u8BF7\u6C42",
276
- inputStruct: AcceptFriendRequestInput,
277
- outputStruct: z.void()
175
+ inputStruct: "AcceptFriendRequestInput",
176
+ outputStruct: null
278
177
  },
279
178
  {
280
179
  endpoint: "reject_friend_request",
281
180
  description: "\u62D2\u7EDD\u597D\u53CB\u8BF7\u6C42",
282
- inputStruct: RejectFriendRequestInput,
283
- outputStruct: z.void()
181
+ inputStruct: "RejectFriendRequestInput",
182
+ outputStruct: null
284
183
  }
285
184
  ]
286
185
  },
@@ -290,128 +189,128 @@ var apiCategories = {
290
189
  {
291
190
  endpoint: "set_group_name",
292
191
  description: "\u8BBE\u7F6E\u7FA4\u540D\u79F0",
293
- inputStruct: SetGroupNameInput,
294
- outputStruct: z.void()
192
+ inputStruct: "SetGroupNameInput",
193
+ outputStruct: null
295
194
  },
296
195
  {
297
196
  endpoint: "set_group_avatar",
298
197
  description: "\u8BBE\u7F6E\u7FA4\u5934\u50CF",
299
- inputStruct: SetGroupAvatarInput,
300
- outputStruct: z.void()
198
+ inputStruct: "SetGroupAvatarInput",
199
+ outputStruct: null
301
200
  },
302
201
  {
303
202
  endpoint: "set_group_member_card",
304
203
  description: "\u8BBE\u7F6E\u7FA4\u540D\u7247",
305
- inputStruct: SetGroupMemberCardInput,
306
- outputStruct: z.void()
204
+ inputStruct: "SetGroupMemberCardInput",
205
+ outputStruct: null
307
206
  },
308
207
  {
309
208
  endpoint: "set_group_member_special_title",
310
209
  description: "\u8BBE\u7F6E\u7FA4\u6210\u5458\u4E13\u5C5E\u5934\u8854",
311
- inputStruct: SetGroupMemberSpecialTitleInput,
312
- outputStruct: z.void()
210
+ inputStruct: "SetGroupMemberSpecialTitleInput",
211
+ outputStruct: null
313
212
  },
314
213
  {
315
214
  endpoint: "set_group_member_admin",
316
215
  description: "\u8BBE\u7F6E\u7FA4\u7BA1\u7406\u5458",
317
- inputStruct: SetGroupMemberAdminInput,
318
- outputStruct: z.void()
216
+ inputStruct: "SetGroupMemberAdminInput",
217
+ outputStruct: null
319
218
  },
320
219
  {
321
220
  endpoint: "set_group_member_mute",
322
221
  description: "\u8BBE\u7F6E\u7FA4\u6210\u5458\u7981\u8A00",
323
- inputStruct: SetGroupMemberMuteInput,
324
- outputStruct: z.void()
222
+ inputStruct: "SetGroupMemberMuteInput",
223
+ outputStruct: null
325
224
  },
326
225
  {
327
226
  endpoint: "set_group_whole_mute",
328
227
  description: "\u8BBE\u7F6E\u7FA4\u5168\u5458\u7981\u8A00",
329
- inputStruct: SetGroupWholeMuteInput,
330
- outputStruct: z.void()
228
+ inputStruct: "SetGroupWholeMuteInput",
229
+ outputStruct: null
331
230
  },
332
231
  {
333
232
  endpoint: "kick_group_member",
334
233
  description: "\u8E22\u51FA\u7FA4\u6210\u5458",
335
- inputStruct: KickGroupMemberInput,
336
- outputStruct: z.void()
234
+ inputStruct: "KickGroupMemberInput",
235
+ outputStruct: null
337
236
  },
338
237
  {
339
238
  endpoint: "get_group_announcement_list",
340
239
  description: "\u83B7\u53D6\u7FA4\u516C\u544A\u5217\u8868",
341
- inputStruct: GetGroupAnnouncementListInput,
342
- outputStruct: GetGroupAnnouncementListOutput
240
+ inputStruct: "GetGroupAnnouncementListInput",
241
+ outputStruct: "GetGroupAnnouncementListOutput"
343
242
  },
344
243
  {
345
244
  endpoint: "send_group_announcement",
346
245
  description: "\u53D1\u9001\u7FA4\u516C\u544A",
347
- inputStruct: SendGroupAnnouncementInput,
348
- outputStruct: z.void()
246
+ inputStruct: "SendGroupAnnouncementInput",
247
+ outputStruct: null
349
248
  },
350
249
  {
351
250
  endpoint: "delete_group_announcement",
352
251
  description: "\u5220\u9664\u7FA4\u516C\u544A",
353
- inputStruct: DeleteGroupAnnouncementInput,
354
- outputStruct: z.void()
252
+ inputStruct: "DeleteGroupAnnouncementInput",
253
+ outputStruct: null
355
254
  },
356
255
  {
357
256
  endpoint: "get_group_essence_messages",
358
257
  description: "\u83B7\u53D6\u7FA4\u7CBE\u534E\u6D88\u606F\u5217\u8868",
359
- inputStruct: GetGroupEssenceMessagesInput,
360
- outputStruct: GetGroupEssenceMessagesOutput
258
+ inputStruct: "GetGroupEssenceMessagesInput",
259
+ outputStruct: "GetGroupEssenceMessagesOutput"
361
260
  },
362
261
  {
363
262
  endpoint: "set_group_essence_message",
364
263
  description: "\u8BBE\u7F6E\u7FA4\u7CBE\u534E\u6D88\u606F",
365
- inputStruct: SetGroupEssenceMessageInput,
366
- outputStruct: z.void()
264
+ inputStruct: "SetGroupEssenceMessageInput",
265
+ outputStruct: null
367
266
  },
368
267
  {
369
268
  endpoint: "quit_group",
370
269
  description: "\u9000\u51FA\u7FA4",
371
- inputStruct: QuitGroupInput,
372
- outputStruct: z.void()
270
+ inputStruct: "QuitGroupInput",
271
+ outputStruct: null
373
272
  },
374
273
  {
375
274
  endpoint: "send_group_message_reaction",
376
275
  description: "\u53D1\u9001\u7FA4\u6D88\u606F\u8868\u60C5\u56DE\u5E94",
377
- inputStruct: SendGroupMessageReactionInput,
378
- outputStruct: z.void()
276
+ inputStruct: "SendGroupMessageReactionInput",
277
+ outputStruct: null
379
278
  },
380
279
  {
381
280
  endpoint: "send_group_nudge",
382
281
  description: "\u53D1\u9001\u7FA4\u6233\u4E00\u6233",
383
- inputStruct: SendGroupNudgeInput,
384
- outputStruct: z.void()
282
+ inputStruct: "SendGroupNudgeInput",
283
+ outputStruct: null
385
284
  },
386
285
  {
387
286
  endpoint: "get_group_notifications",
388
287
  description: "\u83B7\u53D6\u7FA4\u901A\u77E5\u5217\u8868",
389
- inputStruct: GetGroupNotificationsInput,
390
- outputStruct: GetGroupNotificationsOutput
288
+ inputStruct: "GetGroupNotificationsInput",
289
+ outputStruct: "GetGroupNotificationsOutput"
391
290
  },
392
291
  {
393
292
  endpoint: "accept_group_request",
394
293
  description: "\u540C\u610F\u5165\u7FA4/\u9080\u8BF7\u4ED6\u4EBA\u5165\u7FA4\u8BF7\u6C42",
395
- inputStruct: AcceptGroupRequestInput,
396
- outputStruct: z.void()
294
+ inputStruct: "AcceptGroupRequestInput",
295
+ outputStruct: null
397
296
  },
398
297
  {
399
298
  endpoint: "reject_group_request",
400
299
  description: "\u62D2\u7EDD\u5165\u7FA4/\u9080\u8BF7\u4ED6\u4EBA\u5165\u7FA4\u8BF7\u6C42",
401
- inputStruct: RejectGroupRequestInput,
402
- outputStruct: z.void()
300
+ inputStruct: "RejectGroupRequestInput",
301
+ outputStruct: null
403
302
  },
404
303
  {
405
304
  endpoint: "accept_group_invitation",
406
305
  description: "\u540C\u610F\u4ED6\u4EBA\u9080\u8BF7\u81EA\u8EAB\u5165\u7FA4",
407
- inputStruct: AcceptGroupInvitationInput,
408
- outputStruct: z.void()
306
+ inputStruct: "AcceptGroupInvitationInput",
307
+ outputStruct: null
409
308
  },
410
309
  {
411
310
  endpoint: "reject_group_invitation",
412
311
  description: "\u62D2\u7EDD\u4ED6\u4EBA\u9080\u8BF7\u81EA\u8EAB\u5165\u7FA4",
413
- inputStruct: RejectGroupInvitationInput,
414
- outputStruct: z.void()
312
+ inputStruct: "RejectGroupInvitationInput",
313
+ outputStruct: null
415
314
  }
416
315
  ]
417
316
  },
@@ -421,68 +320,68 @@ var apiCategories = {
421
320
  {
422
321
  endpoint: "upload_private_file",
423
322
  description: "\u4E0A\u4F20\u79C1\u804A\u6587\u4EF6",
424
- inputStruct: UploadPrivateFileInput,
425
- outputStruct: UploadPrivateFileOutput
323
+ inputStruct: "UploadPrivateFileInput",
324
+ outputStruct: "UploadPrivateFileOutput"
426
325
  },
427
326
  {
428
327
  endpoint: "upload_group_file",
429
328
  description: "\u4E0A\u4F20\u7FA4\u6587\u4EF6",
430
- inputStruct: UploadGroupFileInput,
431
- outputStruct: UploadGroupFileOutput
329
+ inputStruct: "UploadGroupFileInput",
330
+ outputStruct: "UploadGroupFileOutput"
432
331
  },
433
332
  {
434
333
  endpoint: "get_private_file_download_url",
435
334
  description: "\u83B7\u53D6\u79C1\u804A\u6587\u4EF6\u4E0B\u8F7D\u94FE\u63A5",
436
- inputStruct: GetPrivateFileDownloadUrlInput,
437
- outputStruct: GetPrivateFileDownloadUrlOutput
335
+ inputStruct: "GetPrivateFileDownloadUrlInput",
336
+ outputStruct: "GetPrivateFileDownloadUrlOutput"
438
337
  },
439
338
  {
440
339
  endpoint: "get_group_file_download_url",
441
340
  description: "\u83B7\u53D6\u7FA4\u6587\u4EF6\u4E0B\u8F7D\u94FE\u63A5",
442
- inputStruct: GetGroupFileDownloadUrlInput,
443
- outputStruct: GetGroupFileDownloadUrlOutput
341
+ inputStruct: "GetGroupFileDownloadUrlInput",
342
+ outputStruct: "GetGroupFileDownloadUrlOutput"
444
343
  },
445
344
  {
446
345
  endpoint: "get_group_files",
447
346
  description: "\u83B7\u53D6\u7FA4\u6587\u4EF6\u5217\u8868",
448
- inputStruct: GetGroupFilesInput,
449
- outputStruct: GetGroupFilesOutput
347
+ inputStruct: "GetGroupFilesInput",
348
+ outputStruct: "GetGroupFilesOutput"
450
349
  },
451
350
  {
452
351
  endpoint: "move_group_file",
453
352
  description: "\u79FB\u52A8\u7FA4\u6587\u4EF6",
454
- inputStruct: MoveGroupFileInput,
455
- outputStruct: z.void()
353
+ inputStruct: "MoveGroupFileInput",
354
+ outputStruct: null
456
355
  },
457
356
  {
458
357
  endpoint: "rename_group_file",
459
358
  description: "\u91CD\u547D\u540D\u7FA4\u6587\u4EF6",
460
- inputStruct: RenameGroupFileInput,
461
- outputStruct: z.void()
359
+ inputStruct: "RenameGroupFileInput",
360
+ outputStruct: null
462
361
  },
463
362
  {
464
363
  endpoint: "delete_group_file",
465
364
  description: "\u5220\u9664\u7FA4\u6587\u4EF6",
466
- inputStruct: DeleteGroupFileInput,
467
- outputStruct: z.void()
365
+ inputStruct: "DeleteGroupFileInput",
366
+ outputStruct: null
468
367
  },
469
368
  {
470
369
  endpoint: "create_group_folder",
471
370
  description: "\u521B\u5EFA\u7FA4\u6587\u4EF6\u5939",
472
- inputStruct: CreateGroupFolderInput,
473
- outputStruct: CreateGroupFolderOutput
371
+ inputStruct: "CreateGroupFolderInput",
372
+ outputStruct: "CreateGroupFolderOutput"
474
373
  },
475
374
  {
476
375
  endpoint: "rename_group_folder",
477
376
  description: "\u91CD\u547D\u540D\u7FA4\u6587\u4EF6\u5939",
478
- inputStruct: RenameGroupFolderInput,
479
- outputStruct: z.void()
377
+ inputStruct: "RenameGroupFolderInput",
378
+ outputStruct: null
480
379
  },
481
380
  {
482
381
  endpoint: "delete_group_folder",
483
382
  description: "\u5220\u9664\u7FA4\u6587\u4EF6\u5939",
484
- inputStruct: DeleteGroupFolderInput,
485
- outputStruct: z.void()
383
+ inputStruct: "DeleteGroupFolderInput",
384
+ outputStruct: null
486
385
  }
487
386
  ]
488
387
  }