@alicloud/aliding20230426 2.14.0 → 2.15.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
@@ -1202,6 +1202,93 @@ export declare class CancelScheduleConferenceResponse extends $tea.Model {
1202
1202
  [key: string]: any;
1203
1203
  });
1204
1204
  }
1205
+ export declare class CheckAlibabaStaffHeaders extends $tea.Model {
1206
+ commonHeaders?: {
1207
+ [key: string]: string;
1208
+ };
1209
+ accountContext?: CheckAlibabaStaffHeadersAccountContext;
1210
+ static names(): {
1211
+ [key: string]: string;
1212
+ };
1213
+ static types(): {
1214
+ [key: string]: any;
1215
+ };
1216
+ constructor(map?: {
1217
+ [key: string]: any;
1218
+ });
1219
+ }
1220
+ export declare class CheckAlibabaStaffShrinkHeaders extends $tea.Model {
1221
+ commonHeaders?: {
1222
+ [key: string]: string;
1223
+ };
1224
+ accountContextShrink?: string;
1225
+ static names(): {
1226
+ [key: string]: string;
1227
+ };
1228
+ static types(): {
1229
+ [key: string]: any;
1230
+ };
1231
+ constructor(map?: {
1232
+ [key: string]: any;
1233
+ });
1234
+ }
1235
+ export declare class CheckAlibabaStaffRequest extends $tea.Model {
1236
+ mobile?: string;
1237
+ tenantContext?: CheckAlibabaStaffRequestTenantContext;
1238
+ static names(): {
1239
+ [key: string]: string;
1240
+ };
1241
+ static types(): {
1242
+ [key: string]: any;
1243
+ };
1244
+ constructor(map?: {
1245
+ [key: string]: any;
1246
+ });
1247
+ }
1248
+ export declare class CheckAlibabaStaffShrinkRequest extends $tea.Model {
1249
+ mobile?: string;
1250
+ tenantContextShrink?: string;
1251
+ static names(): {
1252
+ [key: string]: string;
1253
+ };
1254
+ static types(): {
1255
+ [key: string]: any;
1256
+ };
1257
+ constructor(map?: {
1258
+ [key: string]: any;
1259
+ });
1260
+ }
1261
+ export declare class CheckAlibabaStaffResponseBody extends $tea.Model {
1262
+ isAlibabaStaff?: boolean;
1263
+ requestId?: string;
1264
+ vendorRequestId?: string;
1265
+ vendorType?: string;
1266
+ static names(): {
1267
+ [key: string]: string;
1268
+ };
1269
+ static types(): {
1270
+ [key: string]: any;
1271
+ };
1272
+ constructor(map?: {
1273
+ [key: string]: any;
1274
+ });
1275
+ }
1276
+ export declare class CheckAlibabaStaffResponse extends $tea.Model {
1277
+ headers?: {
1278
+ [key: string]: string;
1279
+ };
1280
+ statusCode?: number;
1281
+ body?: CheckAlibabaStaffResponseBody;
1282
+ static names(): {
1283
+ [key: string]: string;
1284
+ };
1285
+ static types(): {
1286
+ [key: string]: any;
1287
+ };
1288
+ constructor(map?: {
1289
+ [key: string]: any;
1290
+ });
1291
+ }
1205
1292
  export declare class CheckUserIsGroupMemberHeaders extends $tea.Model {
1206
1293
  commonHeaders?: {
1207
1294
  [key: string]: string;
@@ -16406,6 +16493,106 @@ export declare class UpdateUserAvatarResponse extends $tea.Model {
16406
16493
  [key: string]: any;
16407
16494
  });
16408
16495
  }
16496
+ export declare class UpdateVideoConferenceSettingHeaders extends $tea.Model {
16497
+ commonHeaders?: {
16498
+ [key: string]: string;
16499
+ };
16500
+ accountContext?: UpdateVideoConferenceSettingHeadersAccountContext;
16501
+ static names(): {
16502
+ [key: string]: string;
16503
+ };
16504
+ static types(): {
16505
+ [key: string]: any;
16506
+ };
16507
+ constructor(map?: {
16508
+ [key: string]: any;
16509
+ });
16510
+ }
16511
+ export declare class UpdateVideoConferenceSettingShrinkHeaders extends $tea.Model {
16512
+ commonHeaders?: {
16513
+ [key: string]: string;
16514
+ };
16515
+ accountContextShrink?: string;
16516
+ static names(): {
16517
+ [key: string]: string;
16518
+ };
16519
+ static types(): {
16520
+ [key: string]: any;
16521
+ };
16522
+ constructor(map?: {
16523
+ [key: string]: any;
16524
+ });
16525
+ }
16526
+ export declare class UpdateVideoConferenceSettingRequest extends $tea.Model {
16527
+ allowUnmuteSelf?: boolean;
16528
+ autoTransferHost?: boolean;
16529
+ forbiddenShareScreen?: boolean;
16530
+ lockConference?: boolean;
16531
+ muteAll?: boolean;
16532
+ onlyInternalEmployeesJoin?: boolean;
16533
+ tenantContext?: UpdateVideoConferenceSettingRequestTenantContext;
16534
+ conferenceId?: string;
16535
+ static names(): {
16536
+ [key: string]: string;
16537
+ };
16538
+ static types(): {
16539
+ [key: string]: any;
16540
+ };
16541
+ constructor(map?: {
16542
+ [key: string]: any;
16543
+ });
16544
+ }
16545
+ export declare class UpdateVideoConferenceSettingShrinkRequest extends $tea.Model {
16546
+ allowUnmuteSelf?: boolean;
16547
+ autoTransferHost?: boolean;
16548
+ forbiddenShareScreen?: boolean;
16549
+ lockConference?: boolean;
16550
+ muteAll?: boolean;
16551
+ onlyInternalEmployeesJoin?: boolean;
16552
+ tenantContextShrink?: string;
16553
+ conferenceId?: string;
16554
+ static names(): {
16555
+ [key: string]: string;
16556
+ };
16557
+ static types(): {
16558
+ [key: string]: any;
16559
+ };
16560
+ constructor(map?: {
16561
+ [key: string]: any;
16562
+ });
16563
+ }
16564
+ export declare class UpdateVideoConferenceSettingResponseBody extends $tea.Model {
16565
+ caseResult?: string;
16566
+ code?: string;
16567
+ requestId?: string;
16568
+ vendorRequestId?: string;
16569
+ vendorType?: string;
16570
+ static names(): {
16571
+ [key: string]: string;
16572
+ };
16573
+ static types(): {
16574
+ [key: string]: any;
16575
+ };
16576
+ constructor(map?: {
16577
+ [key: string]: any;
16578
+ });
16579
+ }
16580
+ export declare class UpdateVideoConferenceSettingResponse extends $tea.Model {
16581
+ headers?: {
16582
+ [key: string]: string;
16583
+ };
16584
+ statusCode?: number;
16585
+ body?: UpdateVideoConferenceSettingResponseBody;
16586
+ static names(): {
16587
+ [key: string]: string;
16588
+ };
16589
+ static types(): {
16590
+ [key: string]: any;
16591
+ };
16592
+ constructor(map?: {
16593
+ [key: string]: any;
16594
+ });
16595
+ }
16409
16596
  export declare class UpdateWorkspaceDocMembersHeaders extends $tea.Model {
16410
16597
  commonHeaders?: {
16411
16598
  [key: string]: string;
@@ -17182,6 +17369,30 @@ export declare class CancelScheduleConferenceRequestTenantContext extends $tea.M
17182
17369
  [key: string]: any;
17183
17370
  });
17184
17371
  }
17372
+ export declare class CheckAlibabaStaffHeadersAccountContext extends $tea.Model {
17373
+ accountId?: string;
17374
+ static names(): {
17375
+ [key: string]: string;
17376
+ };
17377
+ static types(): {
17378
+ [key: string]: any;
17379
+ };
17380
+ constructor(map?: {
17381
+ [key: string]: any;
17382
+ });
17383
+ }
17384
+ export declare class CheckAlibabaStaffRequestTenantContext extends $tea.Model {
17385
+ tenantId?: string;
17386
+ static names(): {
17387
+ [key: string]: string;
17388
+ };
17389
+ static types(): {
17390
+ [key: string]: any;
17391
+ };
17392
+ constructor(map?: {
17393
+ [key: string]: any;
17394
+ });
17395
+ }
17185
17396
  export declare class CheckUserIsGroupMemberHeadersAccountContext extends $tea.Model {
17186
17397
  accountId?: string;
17187
17398
  static names(): {
@@ -25119,6 +25330,30 @@ export declare class UpdateUserAvatarHeadersAccountContext extends $tea.Model {
25119
25330
  [key: string]: any;
25120
25331
  });
25121
25332
  }
25333
+ export declare class UpdateVideoConferenceSettingHeadersAccountContext extends $tea.Model {
25334
+ accountId?: string;
25335
+ static names(): {
25336
+ [key: string]: string;
25337
+ };
25338
+ static types(): {
25339
+ [key: string]: any;
25340
+ };
25341
+ constructor(map?: {
25342
+ [key: string]: any;
25343
+ });
25344
+ }
25345
+ export declare class UpdateVideoConferenceSettingRequestTenantContext extends $tea.Model {
25346
+ tenantId?: string;
25347
+ static names(): {
25348
+ [key: string]: string;
25349
+ };
25350
+ static types(): {
25351
+ [key: string]: any;
25352
+ };
25353
+ constructor(map?: {
25354
+ [key: string]: any;
25355
+ });
25356
+ }
25122
25357
  export declare class UpdateWorkspaceDocMembersHeadersAccountContext extends $tea.Model {
25123
25358
  accountId?: string;
25124
25359
  static names(): {
@@ -25468,6 +25703,22 @@ export default class Client extends OpenApi {
25468
25703
  * @return CancelScheduleConferenceResponse
25469
25704
  */
25470
25705
  cancelScheduleConference(request: CancelScheduleConferenceRequest): Promise<CancelScheduleConferenceResponse>;
25706
+ /**
25707
+ * @summary 校验阿里员工
25708
+ *
25709
+ * @param tmpReq CheckAlibabaStaffRequest
25710
+ * @param tmpHeader CheckAlibabaStaffHeaders
25711
+ * @param runtime runtime options for this request RuntimeOptions
25712
+ * @return CheckAlibabaStaffResponse
25713
+ */
25714
+ checkAlibabaStaffWithOptions(tmpReq: CheckAlibabaStaffRequest, tmpHeader: CheckAlibabaStaffHeaders, runtime: $Util.RuntimeOptions): Promise<CheckAlibabaStaffResponse>;
25715
+ /**
25716
+ * @summary 校验阿里员工
25717
+ *
25718
+ * @param request CheckAlibabaStaffRequest
25719
+ * @return CheckAlibabaStaffResponse
25720
+ */
25721
+ checkAlibabaStaff(request: CheckAlibabaStaffRequest): Promise<CheckAlibabaStaffResponse>;
25471
25722
  /**
25472
25723
  * @summary 查询用户是否为企业内部群成员
25473
25724
  *
@@ -28216,6 +28467,22 @@ export default class Client extends OpenApi {
28216
28467
  * @return UpdateUserAvatarResponse
28217
28468
  */
28218
28469
  updateUserAvatar(request: UpdateUserAvatarRequest): Promise<UpdateUserAvatarResponse>;
28470
+ /**
28471
+ * @summary 设置正在进行中的视频会议属性
28472
+ *
28473
+ * @param tmpReq UpdateVideoConferenceSettingRequest
28474
+ * @param tmpHeader UpdateVideoConferenceSettingHeaders
28475
+ * @param runtime runtime options for this request RuntimeOptions
28476
+ * @return UpdateVideoConferenceSettingResponse
28477
+ */
28478
+ updateVideoConferenceSettingWithOptions(tmpReq: UpdateVideoConferenceSettingRequest, tmpHeader: UpdateVideoConferenceSettingHeaders, runtime: $Util.RuntimeOptions): Promise<UpdateVideoConferenceSettingResponse>;
28479
+ /**
28480
+ * @summary 设置正在进行中的视频会议属性
28481
+ *
28482
+ * @param request UpdateVideoConferenceSettingRequest
28483
+ * @return UpdateVideoConferenceSettingResponse
28484
+ */
28485
+ updateVideoConferenceSetting(request: UpdateVideoConferenceSettingRequest): Promise<UpdateVideoConferenceSettingResponse>;
28219
28486
  /**
28220
28487
  * @summary 修改知识库文档成员权限
28221
28488
  *