@alicloud/aliding20230426 1.2.0 → 1.3.0

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/client.d.ts CHANGED
@@ -268,6 +268,135 @@ export declare class CreateSheetResponse extends $tea.Model {
268
268
  [key: string]: any;
269
269
  });
270
270
  }
271
+ export declare class CreateTodoTaskHeaders extends $tea.Model {
272
+ commonHeaders?: {
273
+ [key: string]: string;
274
+ };
275
+ accountContext?: CreateTodoTaskHeadersAccountContext;
276
+ static names(): {
277
+ [key: string]: string;
278
+ };
279
+ static types(): {
280
+ [key: string]: any;
281
+ };
282
+ constructor(map?: {
283
+ [key: string]: any;
284
+ });
285
+ }
286
+ export declare class CreateTodoTaskShrinkHeaders extends $tea.Model {
287
+ commonHeaders?: {
288
+ [key: string]: string;
289
+ };
290
+ accountContextShrink?: string;
291
+ static names(): {
292
+ [key: string]: string;
293
+ };
294
+ static types(): {
295
+ [key: string]: any;
296
+ };
297
+ constructor(map?: {
298
+ [key: string]: any;
299
+ });
300
+ }
301
+ export declare class CreateTodoTaskRequest extends $tea.Model {
302
+ tenantContext?: CreateTodoTaskRequestTenantContext;
303
+ contentFieldList?: CreateTodoTaskRequestContentFieldList[];
304
+ creatorId?: string;
305
+ description?: string;
306
+ detailUrl?: CreateTodoTaskRequestDetailUrl;
307
+ dueTime?: number;
308
+ executorIds?: string[];
309
+ isOnlyShowExecutor?: boolean;
310
+ notifyConfigs?: CreateTodoTaskRequestNotifyConfigs;
311
+ operatorId?: string;
312
+ participantIds?: string[];
313
+ priority?: number;
314
+ sourceId?: string;
315
+ subject?: string;
316
+ static names(): {
317
+ [key: string]: string;
318
+ };
319
+ static types(): {
320
+ [key: string]: any;
321
+ };
322
+ constructor(map?: {
323
+ [key: string]: any;
324
+ });
325
+ }
326
+ export declare class CreateTodoTaskShrinkRequest extends $tea.Model {
327
+ tenantContextShrink?: string;
328
+ contentFieldListShrink?: string;
329
+ creatorId?: string;
330
+ description?: string;
331
+ detailUrlShrink?: string;
332
+ dueTime?: number;
333
+ executorIdsShrink?: string;
334
+ isOnlyShowExecutor?: boolean;
335
+ notifyConfigsShrink?: string;
336
+ operatorId?: string;
337
+ participantIdsShrink?: string;
338
+ priority?: number;
339
+ sourceId?: string;
340
+ subject?: string;
341
+ static names(): {
342
+ [key: string]: string;
343
+ };
344
+ static types(): {
345
+ [key: string]: any;
346
+ };
347
+ constructor(map?: {
348
+ [key: string]: any;
349
+ });
350
+ }
351
+ export declare class CreateTodoTaskResponseBody extends $tea.Model {
352
+ bizTag?: string;
353
+ contentFieldList?: CreateTodoTaskResponseBodyContentFieldList[];
354
+ createdTime?: number;
355
+ creatorId?: string;
356
+ description?: string;
357
+ detailUrl?: CreateTodoTaskResponseBodyDetailUrl;
358
+ done?: boolean;
359
+ dueTime?: number;
360
+ executorIds?: string[];
361
+ finishTime?: number;
362
+ id?: string;
363
+ isOnlyShowExecutor?: boolean;
364
+ modifiedTime?: number;
365
+ modifierId?: string;
366
+ notifyConfigs?: CreateTodoTaskResponseBodyNotifyConfigs;
367
+ participantIds?: string[];
368
+ priority?: number;
369
+ requestId?: string;
370
+ source?: string;
371
+ sourceId?: string;
372
+ startTime?: number;
373
+ subject?: string;
374
+ static names(): {
375
+ [key: string]: string;
376
+ };
377
+ static types(): {
378
+ [key: string]: any;
379
+ };
380
+ constructor(map?: {
381
+ [key: string]: any;
382
+ });
383
+ }
384
+ export declare class CreateTodoTaskResponse extends $tea.Model {
385
+ headers: {
386
+ [key: string]: string;
387
+ };
388
+ statusCode: number;
389
+ body: CreateTodoTaskResponseBody;
390
+ static names(): {
391
+ [key: string]: string;
392
+ };
393
+ static types(): {
394
+ [key: string]: any;
395
+ };
396
+ constructor(map?: {
397
+ [key: string]: any;
398
+ });
399
+ }
271
400
  export declare class CreateWorkspaceHeaders extends $tea.Model {
272
401
  commonHeaders?: {
273
402
  [key: string]: string;
@@ -456,6 +585,93 @@ export declare class CreateWorkspaceDocResponse extends $tea.Model {
456
585
  [key: string]: any;
457
586
  });
458
587
  }
588
+ export declare class DeleteTodoTaskHeaders extends $tea.Model {
589
+ commonHeaders?: {
590
+ [key: string]: string;
591
+ };
592
+ accountContext?: DeleteTodoTaskHeadersAccountContext;
593
+ static names(): {
594
+ [key: string]: string;
595
+ };
596
+ static types(): {
597
+ [key: string]: any;
598
+ };
599
+ constructor(map?: {
600
+ [key: string]: any;
601
+ });
602
+ }
603
+ export declare class DeleteTodoTaskShrinkHeaders extends $tea.Model {
604
+ commonHeaders?: {
605
+ [key: string]: string;
606
+ };
607
+ accountContextShrink?: string;
608
+ static names(): {
609
+ [key: string]: string;
610
+ };
611
+ static types(): {
612
+ [key: string]: any;
613
+ };
614
+ constructor(map?: {
615
+ [key: string]: any;
616
+ });
617
+ }
618
+ export declare class DeleteTodoTaskRequest extends $tea.Model {
619
+ tenantContext?: DeleteTodoTaskRequestTenantContext;
620
+ operatorId?: string;
621
+ taskId?: string;
622
+ static names(): {
623
+ [key: string]: string;
624
+ };
625
+ static types(): {
626
+ [key: string]: any;
627
+ };
628
+ constructor(map?: {
629
+ [key: string]: any;
630
+ });
631
+ }
632
+ export declare class DeleteTodoTaskShrinkRequest extends $tea.Model {
633
+ tenantContextShrink?: string;
634
+ operatorId?: string;
635
+ taskId?: string;
636
+ static names(): {
637
+ [key: string]: string;
638
+ };
639
+ static types(): {
640
+ [key: string]: any;
641
+ };
642
+ constructor(map?: {
643
+ [key: string]: any;
644
+ });
645
+ }
646
+ export declare class DeleteTodoTaskResponseBody extends $tea.Model {
647
+ requestId?: string;
648
+ result?: boolean;
649
+ static names(): {
650
+ [key: string]: string;
651
+ };
652
+ static types(): {
653
+ [key: string]: any;
654
+ };
655
+ constructor(map?: {
656
+ [key: string]: any;
657
+ });
658
+ }
659
+ export declare class DeleteTodoTaskResponse extends $tea.Model {
660
+ headers: {
661
+ [key: string]: string;
662
+ };
663
+ statusCode: number;
664
+ body: DeleteTodoTaskResponseBody;
665
+ static names(): {
666
+ [key: string]: string;
667
+ };
668
+ static types(): {
669
+ [key: string]: any;
670
+ };
671
+ constructor(map?: {
672
+ [key: string]: any;
673
+ });
674
+ }
459
675
  export declare class DeleteWorkspaceDocMembersHeaders extends $tea.Model {
460
676
  commonHeaders?: {
461
677
  [key: string]: string;
@@ -837,11 +1053,11 @@ export declare class InsertRowsBeforeResponse extends $tea.Model {
837
1053
  [key: string]: any;
838
1054
  });
839
1055
  }
840
- export declare class UpdateWorkspaceDocMembersHeaders extends $tea.Model {
1056
+ export declare class QueryOrgTodoTasksHeaders extends $tea.Model {
841
1057
  commonHeaders?: {
842
1058
  [key: string]: string;
843
1059
  };
844
- accountContext?: UpdateWorkspaceDocMembersHeadersAccountContext;
1060
+ accountContext?: QueryOrgTodoTasksHeadersAccountContext;
845
1061
  static names(): {
846
1062
  [key: string]: string;
847
1063
  };
@@ -852,7 +1068,7 @@ export declare class UpdateWorkspaceDocMembersHeaders extends $tea.Model {
852
1068
  [key: string]: any;
853
1069
  });
854
1070
  }
855
- export declare class UpdateWorkspaceDocMembersShrinkHeaders extends $tea.Model {
1071
+ export declare class QueryOrgTodoTasksShrinkHeaders extends $tea.Model {
856
1072
  commonHeaders?: {
857
1073
  [key: string]: string;
858
1074
  };
@@ -867,11 +1083,10 @@ export declare class UpdateWorkspaceDocMembersShrinkHeaders extends $tea.Model {
867
1083
  [key: string]: any;
868
1084
  });
869
1085
  }
870
- export declare class UpdateWorkspaceDocMembersRequest extends $tea.Model {
871
- members?: UpdateWorkspaceDocMembersRequestMembers[];
872
- nodeId?: string;
873
- tenantContext?: UpdateWorkspaceDocMembersRequestTenantContext;
874
- workspaceId?: string;
1086
+ export declare class QueryOrgTodoTasksRequest extends $tea.Model {
1087
+ tenantContext?: QueryOrgTodoTasksRequestTenantContext;
1088
+ isDone?: boolean;
1089
+ nextToken?: string;
875
1090
  static names(): {
876
1091
  [key: string]: string;
877
1092
  };
@@ -882,11 +1097,10 @@ export declare class UpdateWorkspaceDocMembersRequest extends $tea.Model {
882
1097
  [key: string]: any;
883
1098
  });
884
1099
  }
885
- export declare class UpdateWorkspaceDocMembersShrinkRequest extends $tea.Model {
886
- membersShrink?: string;
887
- nodeId?: string;
1100
+ export declare class QueryOrgTodoTasksShrinkRequest extends $tea.Model {
888
1101
  tenantContextShrink?: string;
889
- workspaceId?: string;
1102
+ isDone?: boolean;
1103
+ nextToken?: string;
890
1104
  static names(): {
891
1105
  [key: string]: string;
892
1106
  };
@@ -897,8 +1111,10 @@ export declare class UpdateWorkspaceDocMembersShrinkRequest extends $tea.Model {
897
1111
  [key: string]: any;
898
1112
  });
899
1113
  }
900
- export declare class UpdateWorkspaceDocMembersResponseBody extends $tea.Model {
1114
+ export declare class QueryOrgTodoTasksResponseBody extends $tea.Model {
1115
+ nextToken?: string;
901
1116
  requestId?: string;
1117
+ todoCards?: QueryOrgTodoTasksResponseBodyTodoCards[];
902
1118
  static names(): {
903
1119
  [key: string]: string;
904
1120
  };
@@ -909,12 +1125,12 @@ export declare class UpdateWorkspaceDocMembersResponseBody extends $tea.Model {
909
1125
  [key: string]: any;
910
1126
  });
911
1127
  }
912
- export declare class UpdateWorkspaceDocMembersResponse extends $tea.Model {
1128
+ export declare class QueryOrgTodoTasksResponse extends $tea.Model {
913
1129
  headers: {
914
1130
  [key: string]: string;
915
1131
  };
916
1132
  statusCode: number;
917
- body: UpdateWorkspaceDocMembersResponseBody;
1133
+ body: QueryOrgTodoTasksResponseBody;
918
1134
  static names(): {
919
1135
  [key: string]: string;
920
1136
  };
@@ -925,11 +1141,11 @@ export declare class UpdateWorkspaceDocMembersResponse extends $tea.Model {
925
1141
  [key: string]: any;
926
1142
  });
927
1143
  }
928
- export declare class UpdateWorkspaceMembersHeaders extends $tea.Model {
1144
+ export declare class UpdateTodoTaskHeaders extends $tea.Model {
929
1145
  commonHeaders?: {
930
1146
  [key: string]: string;
931
1147
  };
932
- accountContext?: UpdateWorkspaceMembersHeadersAccountContext;
1148
+ accountContext?: UpdateTodoTaskHeadersAccountContext;
933
1149
  static names(): {
934
1150
  [key: string]: string;
935
1151
  };
@@ -940,7 +1156,7 @@ export declare class UpdateWorkspaceMembersHeaders extends $tea.Model {
940
1156
  [key: string]: any;
941
1157
  });
942
1158
  }
943
- export declare class UpdateWorkspaceMembersShrinkHeaders extends $tea.Model {
1159
+ export declare class UpdateTodoTaskShrinkHeaders extends $tea.Model {
944
1160
  commonHeaders?: {
945
1161
  [key: string]: string;
946
1162
  };
@@ -955,10 +1171,15 @@ export declare class UpdateWorkspaceMembersShrinkHeaders extends $tea.Model {
955
1171
  [key: string]: any;
956
1172
  });
957
1173
  }
958
- export declare class UpdateWorkspaceMembersRequest extends $tea.Model {
959
- members?: UpdateWorkspaceMembersRequestMembers[];
960
- tenantContext?: UpdateWorkspaceMembersRequestTenantContext;
961
- workspaceId?: string;
1174
+ export declare class UpdateTodoTaskRequest extends $tea.Model {
1175
+ tenantContext?: UpdateTodoTaskRequestTenantContext;
1176
+ description?: string;
1177
+ done?: boolean;
1178
+ dueTime?: number;
1179
+ executorIds?: string[];
1180
+ participantIds?: string[];
1181
+ subject?: string;
1182
+ taskId?: string;
962
1183
  static names(): {
963
1184
  [key: string]: string;
964
1185
  };
@@ -969,10 +1190,15 @@ export declare class UpdateWorkspaceMembersRequest extends $tea.Model {
969
1190
  [key: string]: any;
970
1191
  });
971
1192
  }
972
- export declare class UpdateWorkspaceMembersShrinkRequest extends $tea.Model {
973
- membersShrink?: string;
1193
+ export declare class UpdateTodoTaskShrinkRequest extends $tea.Model {
974
1194
  tenantContextShrink?: string;
975
- workspaceId?: string;
1195
+ description?: string;
1196
+ done?: boolean;
1197
+ dueTime?: number;
1198
+ executorIdsShrink?: string;
1199
+ participantIdsShrink?: string;
1200
+ subject?: string;
1201
+ taskId?: string;
976
1202
  static names(): {
977
1203
  [key: string]: string;
978
1204
  };
@@ -983,8 +1209,9 @@ export declare class UpdateWorkspaceMembersShrinkRequest extends $tea.Model {
983
1209
  [key: string]: any;
984
1210
  });
985
1211
  }
986
- export declare class UpdateWorkspaceMembersResponseBody extends $tea.Model {
1212
+ export declare class UpdateTodoTaskResponseBody extends $tea.Model {
987
1213
  requestId?: string;
1214
+ result?: boolean;
988
1215
  static names(): {
989
1216
  [key: string]: string;
990
1217
  };
@@ -995,12 +1222,12 @@ export declare class UpdateWorkspaceMembersResponseBody extends $tea.Model {
995
1222
  [key: string]: any;
996
1223
  });
997
1224
  }
998
- export declare class UpdateWorkspaceMembersResponse extends $tea.Model {
1225
+ export declare class UpdateTodoTaskResponse extends $tea.Model {
999
1226
  headers: {
1000
1227
  [key: string]: string;
1001
1228
  };
1002
1229
  statusCode: number;
1003
- body: UpdateWorkspaceMembersResponseBody;
1230
+ body: UpdateTodoTaskResponseBody;
1004
1231
  static names(): {
1005
1232
  [key: string]: string;
1006
1233
  };
@@ -1011,8 +1238,11 @@ export declare class UpdateWorkspaceMembersResponse extends $tea.Model {
1011
1238
  [key: string]: any;
1012
1239
  });
1013
1240
  }
1014
- export declare class AddWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
1015
- accountId?: string;
1241
+ export declare class UpdateTodoTaskExecutorStatusHeaders extends $tea.Model {
1242
+ commonHeaders?: {
1243
+ [key: string]: string;
1244
+ };
1245
+ accountContext?: UpdateTodoTaskExecutorStatusHeadersAccountContext;
1016
1246
  static names(): {
1017
1247
  [key: string]: string;
1018
1248
  };
@@ -1023,10 +1253,11 @@ export declare class AddWorkspaceDocMembersHeadersAccountContext extends $tea.Mo
1023
1253
  [key: string]: any;
1024
1254
  });
1025
1255
  }
1026
- export declare class AddWorkspaceDocMembersRequestMembers extends $tea.Model {
1027
- memberId?: string;
1028
- memberType?: string;
1029
- roleType?: string;
1256
+ export declare class UpdateTodoTaskExecutorStatusShrinkHeaders extends $tea.Model {
1257
+ commonHeaders?: {
1258
+ [key: string]: string;
1259
+ };
1260
+ accountContextShrink?: string;
1030
1261
  static names(): {
1031
1262
  [key: string]: string;
1032
1263
  };
@@ -1037,8 +1268,11 @@ export declare class AddWorkspaceDocMembersRequestMembers extends $tea.Model {
1037
1268
  [key: string]: any;
1038
1269
  });
1039
1270
  }
1040
- export declare class AddWorkspaceDocMembersRequestTenantContext extends $tea.Model {
1041
- tenantId?: string;
1271
+ export declare class UpdateTodoTaskExecutorStatusRequest extends $tea.Model {
1272
+ tenantContext?: UpdateTodoTaskExecutorStatusRequestTenantContext;
1273
+ executorStatusList?: UpdateTodoTaskExecutorStatusRequestExecutorStatusList[];
1274
+ operatorId?: string;
1275
+ taskId?: string;
1042
1276
  static names(): {
1043
1277
  [key: string]: string;
1044
1278
  };
@@ -1049,8 +1283,11 @@ export declare class AddWorkspaceDocMembersRequestTenantContext extends $tea.Mod
1049
1283
  [key: string]: any;
1050
1284
  });
1051
1285
  }
1052
- export declare class AddWorkspaceMembersHeadersAccountContext extends $tea.Model {
1053
- accountId?: string;
1286
+ export declare class UpdateTodoTaskExecutorStatusShrinkRequest extends $tea.Model {
1287
+ tenantContextShrink?: string;
1288
+ executorStatusListShrink?: string;
1289
+ operatorId?: string;
1290
+ taskId?: string;
1054
1291
  static names(): {
1055
1292
  [key: string]: string;
1056
1293
  };
@@ -1061,10 +1298,9 @@ export declare class AddWorkspaceMembersHeadersAccountContext extends $tea.Model
1061
1298
  [key: string]: any;
1062
1299
  });
1063
1300
  }
1064
- export declare class AddWorkspaceMembersRequestMembers extends $tea.Model {
1065
- memberId?: string;
1066
- memberType?: string;
1067
- roleType?: string;
1301
+ export declare class UpdateTodoTaskExecutorStatusResponseBody extends $tea.Model {
1302
+ requestId?: string;
1303
+ result?: boolean;
1068
1304
  static names(): {
1069
1305
  [key: string]: string;
1070
1306
  };
@@ -1075,8 +1311,12 @@ export declare class AddWorkspaceMembersRequestMembers extends $tea.Model {
1075
1311
  [key: string]: any;
1076
1312
  });
1077
1313
  }
1078
- export declare class AddWorkspaceMembersRequestTenantContext extends $tea.Model {
1079
- tenantId?: string;
1314
+ export declare class UpdateTodoTaskExecutorStatusResponse extends $tea.Model {
1315
+ headers: {
1316
+ [key: string]: string;
1317
+ };
1318
+ statusCode: number;
1319
+ body: UpdateTodoTaskExecutorStatusResponseBody;
1080
1320
  static names(): {
1081
1321
  [key: string]: string;
1082
1322
  };
@@ -1087,8 +1327,11 @@ export declare class AddWorkspaceMembersRequestTenantContext extends $tea.Model
1087
1327
  [key: string]: any;
1088
1328
  });
1089
1329
  }
1090
- export declare class CreateSheetHeadersAccountContext extends $tea.Model {
1091
- accountId?: string;
1330
+ export declare class UpdateWorkspaceDocMembersHeaders extends $tea.Model {
1331
+ commonHeaders?: {
1332
+ [key: string]: string;
1333
+ };
1334
+ accountContext?: UpdateWorkspaceDocMembersHeadersAccountContext;
1092
1335
  static names(): {
1093
1336
  [key: string]: string;
1094
1337
  };
@@ -1099,8 +1342,11 @@ export declare class CreateSheetHeadersAccountContext extends $tea.Model {
1099
1342
  [key: string]: any;
1100
1343
  });
1101
1344
  }
1102
- export declare class CreateSheetRequestTenantContext extends $tea.Model {
1103
- tenantId?: string;
1345
+ export declare class UpdateWorkspaceDocMembersShrinkHeaders extends $tea.Model {
1346
+ commonHeaders?: {
1347
+ [key: string]: string;
1348
+ };
1349
+ accountContextShrink?: string;
1104
1350
  static names(): {
1105
1351
  [key: string]: string;
1106
1352
  };
@@ -1111,8 +1357,11 @@ export declare class CreateSheetRequestTenantContext extends $tea.Model {
1111
1357
  [key: string]: any;
1112
1358
  });
1113
1359
  }
1114
- export declare class CreateWorkspaceHeadersAccountContext extends $tea.Model {
1115
- accountId?: string;
1360
+ export declare class UpdateWorkspaceDocMembersRequest extends $tea.Model {
1361
+ members?: UpdateWorkspaceDocMembersRequestMembers[];
1362
+ nodeId?: string;
1363
+ tenantContext?: UpdateWorkspaceDocMembersRequestTenantContext;
1364
+ workspaceId?: string;
1116
1365
  static names(): {
1117
1366
  [key: string]: string;
1118
1367
  };
@@ -1123,8 +1372,11 @@ export declare class CreateWorkspaceHeadersAccountContext extends $tea.Model {
1123
1372
  [key: string]: any;
1124
1373
  });
1125
1374
  }
1126
- export declare class CreateWorkspaceRequestTenantContext extends $tea.Model {
1127
- tenantId?: string;
1375
+ export declare class UpdateWorkspaceDocMembersShrinkRequest extends $tea.Model {
1376
+ membersShrink?: string;
1377
+ nodeId?: string;
1378
+ tenantContextShrink?: string;
1379
+ workspaceId?: string;
1128
1380
  static names(): {
1129
1381
  [key: string]: string;
1130
1382
  };
@@ -1135,8 +1387,8 @@ export declare class CreateWorkspaceRequestTenantContext extends $tea.Model {
1135
1387
  [key: string]: any;
1136
1388
  });
1137
1389
  }
1138
- export declare class CreateWorkspaceDocHeadersAccountContext extends $tea.Model {
1139
- accountId?: string;
1390
+ export declare class UpdateWorkspaceDocMembersResponseBody extends $tea.Model {
1391
+ requestId?: string;
1140
1392
  static names(): {
1141
1393
  [key: string]: string;
1142
1394
  };
@@ -1147,8 +1399,12 @@ export declare class CreateWorkspaceDocHeadersAccountContext extends $tea.Model
1147
1399
  [key: string]: any;
1148
1400
  });
1149
1401
  }
1150
- export declare class CreateWorkspaceDocRequestTenantContext extends $tea.Model {
1151
- tenantId?: string;
1402
+ export declare class UpdateWorkspaceDocMembersResponse extends $tea.Model {
1403
+ headers: {
1404
+ [key: string]: string;
1405
+ };
1406
+ statusCode: number;
1407
+ body: UpdateWorkspaceDocMembersResponseBody;
1152
1408
  static names(): {
1153
1409
  [key: string]: string;
1154
1410
  };
@@ -1159,8 +1415,366 @@ export declare class CreateWorkspaceDocRequestTenantContext extends $tea.Model {
1159
1415
  [key: string]: any;
1160
1416
  });
1161
1417
  }
1162
- export declare class DeleteWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
1163
- accountId?: string;
1418
+ export declare class UpdateWorkspaceMembersHeaders extends $tea.Model {
1419
+ commonHeaders?: {
1420
+ [key: string]: string;
1421
+ };
1422
+ accountContext?: UpdateWorkspaceMembersHeadersAccountContext;
1423
+ static names(): {
1424
+ [key: string]: string;
1425
+ };
1426
+ static types(): {
1427
+ [key: string]: any;
1428
+ };
1429
+ constructor(map?: {
1430
+ [key: string]: any;
1431
+ });
1432
+ }
1433
+ export declare class UpdateWorkspaceMembersShrinkHeaders extends $tea.Model {
1434
+ commonHeaders?: {
1435
+ [key: string]: string;
1436
+ };
1437
+ accountContextShrink?: string;
1438
+ static names(): {
1439
+ [key: string]: string;
1440
+ };
1441
+ static types(): {
1442
+ [key: string]: any;
1443
+ };
1444
+ constructor(map?: {
1445
+ [key: string]: any;
1446
+ });
1447
+ }
1448
+ export declare class UpdateWorkspaceMembersRequest extends $tea.Model {
1449
+ members?: UpdateWorkspaceMembersRequestMembers[];
1450
+ tenantContext?: UpdateWorkspaceMembersRequestTenantContext;
1451
+ workspaceId?: string;
1452
+ static names(): {
1453
+ [key: string]: string;
1454
+ };
1455
+ static types(): {
1456
+ [key: string]: any;
1457
+ };
1458
+ constructor(map?: {
1459
+ [key: string]: any;
1460
+ });
1461
+ }
1462
+ export declare class UpdateWorkspaceMembersShrinkRequest extends $tea.Model {
1463
+ membersShrink?: string;
1464
+ tenantContextShrink?: string;
1465
+ workspaceId?: string;
1466
+ static names(): {
1467
+ [key: string]: string;
1468
+ };
1469
+ static types(): {
1470
+ [key: string]: any;
1471
+ };
1472
+ constructor(map?: {
1473
+ [key: string]: any;
1474
+ });
1475
+ }
1476
+ export declare class UpdateWorkspaceMembersResponseBody extends $tea.Model {
1477
+ requestId?: string;
1478
+ static names(): {
1479
+ [key: string]: string;
1480
+ };
1481
+ static types(): {
1482
+ [key: string]: any;
1483
+ };
1484
+ constructor(map?: {
1485
+ [key: string]: any;
1486
+ });
1487
+ }
1488
+ export declare class UpdateWorkspaceMembersResponse extends $tea.Model {
1489
+ headers: {
1490
+ [key: string]: string;
1491
+ };
1492
+ statusCode: number;
1493
+ body: UpdateWorkspaceMembersResponseBody;
1494
+ static names(): {
1495
+ [key: string]: string;
1496
+ };
1497
+ static types(): {
1498
+ [key: string]: any;
1499
+ };
1500
+ constructor(map?: {
1501
+ [key: string]: any;
1502
+ });
1503
+ }
1504
+ export declare class AddWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
1505
+ accountId?: string;
1506
+ static names(): {
1507
+ [key: string]: string;
1508
+ };
1509
+ static types(): {
1510
+ [key: string]: any;
1511
+ };
1512
+ constructor(map?: {
1513
+ [key: string]: any;
1514
+ });
1515
+ }
1516
+ export declare class AddWorkspaceDocMembersRequestMembers extends $tea.Model {
1517
+ memberId?: string;
1518
+ memberType?: string;
1519
+ roleType?: string;
1520
+ static names(): {
1521
+ [key: string]: string;
1522
+ };
1523
+ static types(): {
1524
+ [key: string]: any;
1525
+ };
1526
+ constructor(map?: {
1527
+ [key: string]: any;
1528
+ });
1529
+ }
1530
+ export declare class AddWorkspaceDocMembersRequestTenantContext extends $tea.Model {
1531
+ tenantId?: string;
1532
+ static names(): {
1533
+ [key: string]: string;
1534
+ };
1535
+ static types(): {
1536
+ [key: string]: any;
1537
+ };
1538
+ constructor(map?: {
1539
+ [key: string]: any;
1540
+ });
1541
+ }
1542
+ export declare class AddWorkspaceMembersHeadersAccountContext extends $tea.Model {
1543
+ accountId?: string;
1544
+ static names(): {
1545
+ [key: string]: string;
1546
+ };
1547
+ static types(): {
1548
+ [key: string]: any;
1549
+ };
1550
+ constructor(map?: {
1551
+ [key: string]: any;
1552
+ });
1553
+ }
1554
+ export declare class AddWorkspaceMembersRequestMembers extends $tea.Model {
1555
+ memberId?: string;
1556
+ memberType?: string;
1557
+ roleType?: string;
1558
+ static names(): {
1559
+ [key: string]: string;
1560
+ };
1561
+ static types(): {
1562
+ [key: string]: any;
1563
+ };
1564
+ constructor(map?: {
1565
+ [key: string]: any;
1566
+ });
1567
+ }
1568
+ export declare class AddWorkspaceMembersRequestTenantContext extends $tea.Model {
1569
+ tenantId?: string;
1570
+ static names(): {
1571
+ [key: string]: string;
1572
+ };
1573
+ static types(): {
1574
+ [key: string]: any;
1575
+ };
1576
+ constructor(map?: {
1577
+ [key: string]: any;
1578
+ });
1579
+ }
1580
+ export declare class CreateSheetHeadersAccountContext extends $tea.Model {
1581
+ accountId?: string;
1582
+ static names(): {
1583
+ [key: string]: string;
1584
+ };
1585
+ static types(): {
1586
+ [key: string]: any;
1587
+ };
1588
+ constructor(map?: {
1589
+ [key: string]: any;
1590
+ });
1591
+ }
1592
+ export declare class CreateSheetRequestTenantContext extends $tea.Model {
1593
+ tenantId?: string;
1594
+ static names(): {
1595
+ [key: string]: string;
1596
+ };
1597
+ static types(): {
1598
+ [key: string]: any;
1599
+ };
1600
+ constructor(map?: {
1601
+ [key: string]: any;
1602
+ });
1603
+ }
1604
+ export declare class CreateTodoTaskHeadersAccountContext extends $tea.Model {
1605
+ accountId?: string;
1606
+ static names(): {
1607
+ [key: string]: string;
1608
+ };
1609
+ static types(): {
1610
+ [key: string]: any;
1611
+ };
1612
+ constructor(map?: {
1613
+ [key: string]: any;
1614
+ });
1615
+ }
1616
+ export declare class CreateTodoTaskRequestTenantContext extends $tea.Model {
1617
+ tenantId?: string;
1618
+ static names(): {
1619
+ [key: string]: string;
1620
+ };
1621
+ static types(): {
1622
+ [key: string]: any;
1623
+ };
1624
+ constructor(map?: {
1625
+ [key: string]: any;
1626
+ });
1627
+ }
1628
+ export declare class CreateTodoTaskRequestContentFieldList extends $tea.Model {
1629
+ fieldKey?: string;
1630
+ fieldValue?: string;
1631
+ static names(): {
1632
+ [key: string]: string;
1633
+ };
1634
+ static types(): {
1635
+ [key: string]: any;
1636
+ };
1637
+ constructor(map?: {
1638
+ [key: string]: any;
1639
+ });
1640
+ }
1641
+ export declare class CreateTodoTaskRequestDetailUrl extends $tea.Model {
1642
+ appUrl?: string;
1643
+ pcUrl?: string;
1644
+ static names(): {
1645
+ [key: string]: string;
1646
+ };
1647
+ static types(): {
1648
+ [key: string]: any;
1649
+ };
1650
+ constructor(map?: {
1651
+ [key: string]: any;
1652
+ });
1653
+ }
1654
+ export declare class CreateTodoTaskRequestNotifyConfigs extends $tea.Model {
1655
+ dingNotify?: string;
1656
+ static names(): {
1657
+ [key: string]: string;
1658
+ };
1659
+ static types(): {
1660
+ [key: string]: any;
1661
+ };
1662
+ constructor(map?: {
1663
+ [key: string]: any;
1664
+ });
1665
+ }
1666
+ export declare class CreateTodoTaskResponseBodyContentFieldList extends $tea.Model {
1667
+ fieldKey?: string;
1668
+ fieldValue?: string;
1669
+ static names(): {
1670
+ [key: string]: string;
1671
+ };
1672
+ static types(): {
1673
+ [key: string]: any;
1674
+ };
1675
+ constructor(map?: {
1676
+ [key: string]: any;
1677
+ });
1678
+ }
1679
+ export declare class CreateTodoTaskResponseBodyDetailUrl extends $tea.Model {
1680
+ appUrl?: string;
1681
+ pcUrl?: string;
1682
+ static names(): {
1683
+ [key: string]: string;
1684
+ };
1685
+ static types(): {
1686
+ [key: string]: any;
1687
+ };
1688
+ constructor(map?: {
1689
+ [key: string]: any;
1690
+ });
1691
+ }
1692
+ export declare class CreateTodoTaskResponseBodyNotifyConfigs extends $tea.Model {
1693
+ dingNotify?: string;
1694
+ static names(): {
1695
+ [key: string]: string;
1696
+ };
1697
+ static types(): {
1698
+ [key: string]: any;
1699
+ };
1700
+ constructor(map?: {
1701
+ [key: string]: any;
1702
+ });
1703
+ }
1704
+ export declare class CreateWorkspaceHeadersAccountContext extends $tea.Model {
1705
+ accountId?: string;
1706
+ static names(): {
1707
+ [key: string]: string;
1708
+ };
1709
+ static types(): {
1710
+ [key: string]: any;
1711
+ };
1712
+ constructor(map?: {
1713
+ [key: string]: any;
1714
+ });
1715
+ }
1716
+ export declare class CreateWorkspaceRequestTenantContext extends $tea.Model {
1717
+ tenantId?: string;
1718
+ static names(): {
1719
+ [key: string]: string;
1720
+ };
1721
+ static types(): {
1722
+ [key: string]: any;
1723
+ };
1724
+ constructor(map?: {
1725
+ [key: string]: any;
1726
+ });
1727
+ }
1728
+ export declare class CreateWorkspaceDocHeadersAccountContext extends $tea.Model {
1729
+ accountId?: string;
1730
+ static names(): {
1731
+ [key: string]: string;
1732
+ };
1733
+ static types(): {
1734
+ [key: string]: any;
1735
+ };
1736
+ constructor(map?: {
1737
+ [key: string]: any;
1738
+ });
1739
+ }
1740
+ export declare class CreateWorkspaceDocRequestTenantContext extends $tea.Model {
1741
+ tenantId?: string;
1742
+ static names(): {
1743
+ [key: string]: string;
1744
+ };
1745
+ static types(): {
1746
+ [key: string]: any;
1747
+ };
1748
+ constructor(map?: {
1749
+ [key: string]: any;
1750
+ });
1751
+ }
1752
+ export declare class DeleteTodoTaskHeadersAccountContext extends $tea.Model {
1753
+ accountId?: string;
1754
+ static names(): {
1755
+ [key: string]: string;
1756
+ };
1757
+ static types(): {
1758
+ [key: string]: any;
1759
+ };
1760
+ constructor(map?: {
1761
+ [key: string]: any;
1762
+ });
1763
+ }
1764
+ export declare class DeleteTodoTaskRequestTenantContext extends $tea.Model {
1765
+ tenantId?: string;
1766
+ static names(): {
1767
+ [key: string]: string;
1768
+ };
1769
+ static types(): {
1770
+ [key: string]: any;
1771
+ };
1772
+ constructor(map?: {
1773
+ [key: string]: any;
1774
+ });
1775
+ }
1776
+ export declare class DeleteWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
1777
+ accountId?: string;
1164
1778
  static names(): {
1165
1779
  [key: string]: string;
1166
1780
  };
@@ -1348,6 +1962,126 @@ export declare class InsertRowsBeforeRequestTenantContext extends $tea.Model {
1348
1962
  [key: string]: any;
1349
1963
  });
1350
1964
  }
1965
+ export declare class QueryOrgTodoTasksHeadersAccountContext extends $tea.Model {
1966
+ accountId?: string;
1967
+ static names(): {
1968
+ [key: string]: string;
1969
+ };
1970
+ static types(): {
1971
+ [key: string]: any;
1972
+ };
1973
+ constructor(map?: {
1974
+ [key: string]: any;
1975
+ });
1976
+ }
1977
+ export declare class QueryOrgTodoTasksRequestTenantContext extends $tea.Model {
1978
+ tenantId?: string;
1979
+ static names(): {
1980
+ [key: string]: string;
1981
+ };
1982
+ static types(): {
1983
+ [key: string]: any;
1984
+ };
1985
+ constructor(map?: {
1986
+ [key: string]: any;
1987
+ });
1988
+ }
1989
+ export declare class QueryOrgTodoTasksResponseBodyTodoCardsDetailUrl extends $tea.Model {
1990
+ appUrl?: string;
1991
+ pcUrl?: string;
1992
+ static names(): {
1993
+ [key: string]: string;
1994
+ };
1995
+ static types(): {
1996
+ [key: string]: any;
1997
+ };
1998
+ constructor(map?: {
1999
+ [key: string]: any;
2000
+ });
2001
+ }
2002
+ export declare class QueryOrgTodoTasksResponseBodyTodoCards extends $tea.Model {
2003
+ bizTag?: string;
2004
+ createdTime?: number;
2005
+ creatorId?: string;
2006
+ detailUrl?: QueryOrgTodoTasksResponseBodyTodoCardsDetailUrl;
2007
+ dueTime?: number;
2008
+ isDone?: boolean;
2009
+ modifiedTime?: number;
2010
+ priority?: number;
2011
+ sourceId?: string;
2012
+ subject?: string;
2013
+ taskId?: string;
2014
+ static names(): {
2015
+ [key: string]: string;
2016
+ };
2017
+ static types(): {
2018
+ [key: string]: any;
2019
+ };
2020
+ constructor(map?: {
2021
+ [key: string]: any;
2022
+ });
2023
+ }
2024
+ export declare class UpdateTodoTaskHeadersAccountContext extends $tea.Model {
2025
+ accountId?: string;
2026
+ static names(): {
2027
+ [key: string]: string;
2028
+ };
2029
+ static types(): {
2030
+ [key: string]: any;
2031
+ };
2032
+ constructor(map?: {
2033
+ [key: string]: any;
2034
+ });
2035
+ }
2036
+ export declare class UpdateTodoTaskRequestTenantContext extends $tea.Model {
2037
+ tenantId?: string;
2038
+ static names(): {
2039
+ [key: string]: string;
2040
+ };
2041
+ static types(): {
2042
+ [key: string]: any;
2043
+ };
2044
+ constructor(map?: {
2045
+ [key: string]: any;
2046
+ });
2047
+ }
2048
+ export declare class UpdateTodoTaskExecutorStatusHeadersAccountContext extends $tea.Model {
2049
+ accountId?: string;
2050
+ static names(): {
2051
+ [key: string]: string;
2052
+ };
2053
+ static types(): {
2054
+ [key: string]: any;
2055
+ };
2056
+ constructor(map?: {
2057
+ [key: string]: any;
2058
+ });
2059
+ }
2060
+ export declare class UpdateTodoTaskExecutorStatusRequestTenantContext extends $tea.Model {
2061
+ tenantId?: string;
2062
+ static names(): {
2063
+ [key: string]: string;
2064
+ };
2065
+ static types(): {
2066
+ [key: string]: any;
2067
+ };
2068
+ constructor(map?: {
2069
+ [key: string]: any;
2070
+ });
2071
+ }
2072
+ export declare class UpdateTodoTaskExecutorStatusRequestExecutorStatusList extends $tea.Model {
2073
+ id?: string;
2074
+ isDone?: boolean;
2075
+ static names(): {
2076
+ [key: string]: string;
2077
+ };
2078
+ static types(): {
2079
+ [key: string]: any;
2080
+ };
2081
+ constructor(map?: {
2082
+ [key: string]: any;
2083
+ });
2084
+ }
1351
2085
  export declare class UpdateWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
1352
2086
  accountId?: string;
1353
2087
  static names(): {
@@ -1435,10 +2169,14 @@ export default class Client extends OpenApi {
1435
2169
  addWorkspaceMembers(request: AddWorkspaceMembersRequest): Promise<AddWorkspaceMembersResponse>;
1436
2170
  createSheetWithOptions(tmpReq: CreateSheetRequest, tmpHeader: CreateSheetHeaders, runtime: $Util.RuntimeOptions): Promise<CreateSheetResponse>;
1437
2171
  createSheet(request: CreateSheetRequest): Promise<CreateSheetResponse>;
2172
+ createTodoTaskWithOptions(tmpReq: CreateTodoTaskRequest, tmpHeader: CreateTodoTaskHeaders, runtime: $Util.RuntimeOptions): Promise<CreateTodoTaskResponse>;
2173
+ createTodoTask(request: CreateTodoTaskRequest): Promise<CreateTodoTaskResponse>;
1438
2174
  createWorkspaceWithOptions(tmpReq: CreateWorkspaceRequest, tmpHeader: CreateWorkspaceHeaders, runtime: $Util.RuntimeOptions): Promise<CreateWorkspaceResponse>;
1439
2175
  createWorkspace(request: CreateWorkspaceRequest): Promise<CreateWorkspaceResponse>;
1440
2176
  createWorkspaceDocWithOptions(tmpReq: CreateWorkspaceDocRequest, tmpHeader: CreateWorkspaceDocHeaders, runtime: $Util.RuntimeOptions): Promise<CreateWorkspaceDocResponse>;
1441
2177
  createWorkspaceDoc(request: CreateWorkspaceDocRequest): Promise<CreateWorkspaceDocResponse>;
2178
+ deleteTodoTaskWithOptions(tmpReq: DeleteTodoTaskRequest, tmpHeader: DeleteTodoTaskHeaders, runtime: $Util.RuntimeOptions): Promise<DeleteTodoTaskResponse>;
2179
+ deleteTodoTask(request: DeleteTodoTaskRequest): Promise<DeleteTodoTaskResponse>;
1442
2180
  deleteWorkspaceDocMembersWithOptions(tmpReq: DeleteWorkspaceDocMembersRequest, tmpHeader: DeleteWorkspaceDocMembersHeaders, runtime: $Util.RuntimeOptions): Promise<DeleteWorkspaceDocMembersResponse>;
1443
2181
  deleteWorkspaceDocMembers(request: DeleteWorkspaceDocMembersRequest): Promise<DeleteWorkspaceDocMembersResponse>;
1444
2182
  deleteWorkspaceMembersWithOptions(tmpReq: DeleteWorkspaceMembersRequest, tmpHeader: DeleteWorkspaceMembersHeaders, runtime: $Util.RuntimeOptions): Promise<DeleteWorkspaceMembersResponse>;
@@ -1447,6 +2185,12 @@ export default class Client extends OpenApi {
1447
2185
  getUser(request: GetUserRequest): Promise<GetUserResponse>;
1448
2186
  insertRowsBeforeWithOptions(tmpReq: InsertRowsBeforeRequest, tmpHeader: InsertRowsBeforeHeaders, runtime: $Util.RuntimeOptions): Promise<InsertRowsBeforeResponse>;
1449
2187
  insertRowsBefore(request: InsertRowsBeforeRequest): Promise<InsertRowsBeforeResponse>;
2188
+ queryOrgTodoTasksWithOptions(tmpReq: QueryOrgTodoTasksRequest, tmpHeader: QueryOrgTodoTasksHeaders, runtime: $Util.RuntimeOptions): Promise<QueryOrgTodoTasksResponse>;
2189
+ queryOrgTodoTasks(request: QueryOrgTodoTasksRequest): Promise<QueryOrgTodoTasksResponse>;
2190
+ updateTodoTaskWithOptions(tmpReq: UpdateTodoTaskRequest, tmpHeader: UpdateTodoTaskHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateTodoTaskResponse>;
2191
+ updateTodoTask(request: UpdateTodoTaskRequest): Promise<UpdateTodoTaskResponse>;
2192
+ updateTodoTaskExecutorStatusWithOptions(tmpReq: UpdateTodoTaskExecutorStatusRequest, tmpHeader: UpdateTodoTaskExecutorStatusHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateTodoTaskExecutorStatusResponse>;
2193
+ updateTodoTaskExecutorStatus(request: UpdateTodoTaskExecutorStatusRequest): Promise<UpdateTodoTaskExecutorStatusResponse>;
1450
2194
  updateWorkspaceDocMembersWithOptions(tmpReq: UpdateWorkspaceDocMembersRequest, tmpHeader: UpdateWorkspaceDocMembersHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateWorkspaceDocMembersResponse>;
1451
2195
  updateWorkspaceDocMembers(request: UpdateWorkspaceDocMembersRequest): Promise<UpdateWorkspaceDocMembersResponse>;
1452
2196
  updateWorkspaceMembersWithOptions(tmpReq: UpdateWorkspaceMembersRequest, tmpHeader: UpdateWorkspaceMembersHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateWorkspaceMembersResponse>;