@larksuiteoapi/node-sdk 1.10.0 → 1.11.1

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/types/index.d.ts CHANGED
@@ -46,6 +46,7 @@ declare enum LoggerLevel {
46
46
 
47
47
  declare const CTenantKey: unique symbol;
48
48
  declare const CAppTicket: unique symbol;
49
+ declare const CTenantAccessToken: unique symbol;
49
50
  declare const CWithHelpdeskAuthorization: unique symbol;
50
51
  declare const CWithUserAccessToken: unique symbol;
51
52
 
@@ -368,7 +369,7 @@ declare abstract class Client$1 {
368
369
  };
369
370
  };
370
371
  /**
371
- * 管理后台-密码
372
+ * 管理后台-企业勋章
372
373
  */
373
374
  admin: {
374
375
  /**
@@ -1837,7 +1838,7 @@ declare abstract class Client$1 {
1837
1838
  */
1838
1839
  approval: {
1839
1840
  /**
1840
- * 原生审批定义
1841
+ * 事件
1841
1842
  */
1842
1843
  approval: {
1843
1844
  /**
@@ -2397,7 +2398,7 @@ declare abstract class Client$1 {
2397
2398
  }>;
2398
2399
  };
2399
2400
  /**
2400
- * 审批查询
2401
+ * 原生审批实例
2401
2402
  */
2402
2403
  instance: {
2403
2404
  /**
@@ -6317,81 +6318,38 @@ declare abstract class Client$1 {
6317
6318
  */
6318
6319
  bitable: {
6319
6320
  /**
6320
- * 仪表盘
6321
+ * 多维表格
6321
6322
  */
6322
- appDashboard: {
6323
+ app: {
6323
6324
  /**
6324
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.dashboard&apiName=copy&version=v1 click to debug }
6325
- *
6326
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/copy document }
6325
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app&apiName=create&version=v1 click to debug }
6327
6326
  *
6328
- * 复制仪表盘
6329
- *
6330
- * 该接口用于根据现有仪表盘复制出新的仪表盘
6327
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=bitable&resource=app&version=v1 document }
6331
6328
  */
6332
- copy: (payload?: {
6333
- data: {
6334
- name: string;
6335
- };
6336
- path: {
6337
- app_token: string;
6338
- block_id: string;
6339
- };
6340
- }, options?: IRequestOptions$1) => Promise<{
6341
- code?: number | undefined;
6342
- msg?: string | undefined;
6329
+ create: (payload?: {
6343
6330
  data?: {
6344
- block_id?: string | undefined;
6345
- name?: string | undefined;
6346
- } | undefined;
6347
- }>;
6348
- listWithIterator: (payload?: {
6349
- params?: {
6350
- page_size?: number;
6351
- page_token?: string;
6352
- };
6353
- path: {
6354
- app_token: string;
6331
+ name?: string;
6332
+ folder_token?: string;
6355
6333
  };
6356
- }, options?: IRequestOptions$1) => Promise<{
6357
- [Symbol.asyncIterator](): AsyncGenerator<{} | null, void, unknown>;
6358
- }>;
6359
- /**
6360
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.dashboard&apiName=list&version=v1 click to debug }
6361
- *
6362
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/list document }
6363
- *
6364
- * 列出仪表盘
6365
- *
6366
- * 根据 app_token,获取多维表格下的所有仪表盘
6367
- *
6368
- * 该接口支持调用频率上限为 20 QPS
6369
- */
6370
- list: (payload?: {
6371
6334
  params?: {
6372
- page_size?: number;
6373
- page_token?: string;
6374
- };
6375
- path: {
6376
- app_token: string;
6335
+ customized_config?: boolean;
6336
+ source_app_token?: string;
6337
+ copy_types?: number;
6338
+ api_type?: string;
6377
6339
  };
6378
6340
  }, options?: IRequestOptions$1) => Promise<{
6379
6341
  code?: number | undefined;
6380
6342
  msg?: string | undefined;
6381
6343
  data?: {
6382
- dashboards: Array<{
6383
- block_id: string;
6384
- name: string;
6385
- }>;
6386
- page_token: string;
6387
- has_more: boolean;
6344
+ app?: {
6345
+ app_token?: string | undefined;
6346
+ name?: string | undefined;
6347
+ revision?: number | undefined;
6348
+ folder_token?: string | undefined;
6349
+ url?: string | undefined;
6350
+ } | undefined;
6388
6351
  } | undefined;
6389
6352
  }>;
6390
- };
6391
- /**
6392
- * 多维表格
6393
- */
6394
- app: {
6395
6353
  /**
6396
6354
  * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app&apiName=get&version=v1 click to debug }
6397
6355
  *
@@ -6453,203 +6411,275 @@ declare abstract class Client$1 {
6453
6411
  }>;
6454
6412
  };
6455
6413
  /**
6456
- * 自定义角色
6414
+ * 仪表盘
6457
6415
  */
6458
- appRole: {
6416
+ appDashboard: {
6459
6417
  /**
6460
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=create&version=v1 click to debug }
6418
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.dashboard&apiName=copy&version=v1 click to debug }
6461
6419
  *
6462
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/create document }
6420
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/copy document }
6463
6421
  *
6464
- * 新增自定义角色
6422
+ * 复制仪表盘
6465
6423
  *
6466
- * 新增自定义角色
6424
+ * 该接口用于根据现有仪表盘复制出新的仪表盘
6467
6425
  */
6468
- create: (payload?: {
6426
+ copy: (payload?: {
6469
6427
  data: {
6470
- role_name: string;
6471
- table_roles: Array<{
6472
- table_name?: string;
6473
- table_id?: string;
6474
- table_perm: number;
6475
- rec_rule?: {
6476
- conditions: Array<{
6477
- field_name: string;
6478
- operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6479
- value?: Array<string>;
6480
- }>;
6481
- conjunction?: "and" | "or";
6482
- other_perm?: number;
6483
- };
6484
- field_perm?: {};
6485
- allow_add_record?: boolean;
6486
- allow_delete_record?: boolean;
6487
- }>;
6488
- block_roles?: Array<{
6489
- block_id: string;
6490
- block_perm: number;
6491
- }>;
6428
+ name: string;
6492
6429
  };
6493
- path?: {
6494
- app_token?: string;
6430
+ path: {
6431
+ app_token: string;
6432
+ block_id: string;
6495
6433
  };
6496
6434
  }, options?: IRequestOptions$1) => Promise<{
6497
6435
  code?: number | undefined;
6498
6436
  msg?: string | undefined;
6499
6437
  data?: {
6500
- role?: {
6501
- role_name: string;
6502
- role_id?: string | undefined;
6503
- table_roles: Array<{
6504
- table_name?: string;
6505
- table_id?: string;
6506
- table_perm: number;
6507
- rec_rule?: {
6508
- conditions: Array<{
6509
- field_name: string;
6510
- operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6511
- value?: Array<string>;
6512
- field_type?: number;
6513
- }>;
6514
- conjunction?: "and" | "or";
6515
- other_perm?: number;
6516
- };
6517
- field_perm?: {};
6518
- allow_add_record?: boolean;
6519
- allow_delete_record?: boolean;
6520
- }>;
6521
- block_roles?: {
6522
- block_id: string;
6523
- block_type?: "dashboard" | undefined;
6524
- block_perm: number;
6525
- }[] | undefined;
6526
- } | undefined;
6438
+ block_id?: string | undefined;
6439
+ name?: string | undefined;
6527
6440
  } | undefined;
6528
6441
  }>;
6529
- /**
6530
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=delete&version=v1 click to debug }
6531
- *
6532
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/delete document }
6533
- *
6534
- * 删除自定义角色
6535
- *
6536
- * 删除自定义角色
6537
- */
6538
- delete: (payload?: {
6539
- path?: {
6540
- app_token?: string;
6541
- role_id?: string;
6542
- };
6543
- }, options?: IRequestOptions$1) => Promise<{
6544
- code?: number | undefined;
6545
- msg?: string | undefined;
6546
- data?: {} | undefined;
6547
- }>;
6548
6442
  listWithIterator: (payload?: {
6549
6443
  params?: {
6550
6444
  page_size?: number;
6551
6445
  page_token?: string;
6552
6446
  };
6553
- path?: {
6554
- app_token?: string;
6447
+ path: {
6448
+ app_token: string;
6555
6449
  };
6556
6450
  }, options?: IRequestOptions$1) => Promise<{
6557
- [Symbol.asyncIterator](): AsyncGenerator<{
6558
- items?: {
6559
- role_name: string;
6560
- role_id?: string | undefined;
6561
- table_roles: Array<{
6562
- table_name?: string;
6563
- table_id?: string;
6564
- table_perm: number;
6565
- rec_rule?: {
6566
- conditions: Array<{
6567
- field_name: string;
6568
- operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6569
- value?: Array<string>;
6570
- field_type?: number;
6571
- }>;
6572
- conjunction?: "and" | "or";
6573
- other_perm?: number;
6574
- };
6575
- field_perm?: {};
6576
- allow_add_record?: boolean;
6577
- allow_delete_record?: boolean;
6578
- }>;
6579
- block_roles?: {
6580
- block_id: string;
6581
- block_type?: "dashboard" | undefined;
6582
- block_perm: number;
6583
- }[] | undefined;
6584
- }[] | undefined;
6585
- total?: number | undefined;
6586
- } | null, void, unknown>;
6451
+ [Symbol.asyncIterator](): AsyncGenerator<{} | null, void, unknown>;
6587
6452
  }>;
6588
6453
  /**
6589
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=list&version=v1 click to debug }
6454
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.dashboard&apiName=list&version=v1 click to debug }
6590
6455
  *
6591
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/list document }
6456
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-dashboard/list document }
6592
6457
  *
6593
- * 列出自定义角色
6458
+ * 列出仪表盘
6594
6459
  *
6595
- * 列出自定义角色
6460
+ * 根据 app_token,获取多维表格下的所有仪表盘
6461
+ *
6462
+ * 该接口支持调用频率上限为 20 QPS
6596
6463
  */
6597
6464
  list: (payload?: {
6598
6465
  params?: {
6599
6466
  page_size?: number;
6600
6467
  page_token?: string;
6601
6468
  };
6602
- path?: {
6603
- app_token?: string;
6469
+ path: {
6470
+ app_token: string;
6604
6471
  };
6605
6472
  }, options?: IRequestOptions$1) => Promise<{
6606
6473
  code?: number | undefined;
6607
6474
  msg?: string | undefined;
6608
6475
  data?: {
6609
- items?: {
6610
- role_name: string;
6611
- role_id?: string | undefined;
6612
- table_roles: Array<{
6613
- table_name?: string;
6614
- table_id?: string;
6615
- table_perm: number;
6616
- rec_rule?: {
6617
- conditions: Array<{
6618
- field_name: string;
6619
- operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6620
- value?: Array<string>;
6621
- field_type?: number;
6622
- }>;
6623
- conjunction?: "and" | "or";
6624
- other_perm?: number;
6625
- };
6626
- field_perm?: {};
6627
- allow_add_record?: boolean;
6628
- allow_delete_record?: boolean;
6629
- }>;
6630
- block_roles?: {
6631
- block_id: string;
6632
- block_type?: "dashboard" | undefined;
6633
- block_perm: number;
6634
- }[] | undefined;
6635
- }[] | undefined;
6636
- page_token?: string | undefined;
6637
- has_more?: boolean | undefined;
6638
- total?: number | undefined;
6476
+ dashboards: Array<{
6477
+ block_id: string;
6478
+ name: string;
6479
+ }>;
6480
+ page_token: string;
6481
+ has_more: boolean;
6639
6482
  } | undefined;
6640
6483
  }>;
6484
+ };
6485
+ /**
6486
+ * 自定义角色
6487
+ */
6488
+ appRole: {
6641
6489
  /**
6642
- * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=update&version=v1 click to debug }
6643
- *
6644
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/update document }
6490
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=create&version=v1 click to debug }
6645
6491
  *
6646
- * 更新自定义角色
6492
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/create document }
6647
6493
  *
6648
- * 更新自定义角色
6494
+ * 新增自定义角色
6649
6495
  *
6650
- * 更新自定义角色是全量更新,会完全覆盖旧的自定义角色设置
6496
+ * 新增自定义角色
6651
6497
  */
6652
- update: (payload?: {
6498
+ create: (payload?: {
6499
+ data: {
6500
+ role_name: string;
6501
+ table_roles: Array<{
6502
+ table_name?: string;
6503
+ table_id?: string;
6504
+ table_perm: number;
6505
+ rec_rule?: {
6506
+ conditions: Array<{
6507
+ field_name: string;
6508
+ operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6509
+ value?: Array<string>;
6510
+ }>;
6511
+ conjunction?: "and" | "or";
6512
+ other_perm?: number;
6513
+ };
6514
+ field_perm?: {};
6515
+ allow_add_record?: boolean;
6516
+ allow_delete_record?: boolean;
6517
+ }>;
6518
+ block_roles?: Array<{
6519
+ block_id: string;
6520
+ block_perm: number;
6521
+ }>;
6522
+ };
6523
+ path?: {
6524
+ app_token?: string;
6525
+ };
6526
+ }, options?: IRequestOptions$1) => Promise<{
6527
+ code?: number | undefined;
6528
+ msg?: string | undefined;
6529
+ data?: {
6530
+ role?: {
6531
+ role_name: string;
6532
+ role_id?: string | undefined;
6533
+ table_roles: Array<{
6534
+ table_name?: string;
6535
+ table_id?: string;
6536
+ table_perm: number;
6537
+ rec_rule?: {
6538
+ conditions: Array<{
6539
+ field_name: string;
6540
+ operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6541
+ value?: Array<string>;
6542
+ field_type?: number;
6543
+ }>;
6544
+ conjunction?: "and" | "or";
6545
+ other_perm?: number;
6546
+ };
6547
+ field_perm?: {};
6548
+ allow_add_record?: boolean;
6549
+ allow_delete_record?: boolean;
6550
+ }>;
6551
+ block_roles?: {
6552
+ block_id: string;
6553
+ block_type?: "dashboard" | undefined;
6554
+ block_perm: number;
6555
+ }[] | undefined;
6556
+ } | undefined;
6557
+ } | undefined;
6558
+ }>;
6559
+ /**
6560
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=delete&version=v1 click to debug }
6561
+ *
6562
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/delete document }
6563
+ *
6564
+ * 删除自定义角色
6565
+ *
6566
+ * 删除自定义角色
6567
+ */
6568
+ delete: (payload?: {
6569
+ path?: {
6570
+ app_token?: string;
6571
+ role_id?: string;
6572
+ };
6573
+ }, options?: IRequestOptions$1) => Promise<{
6574
+ code?: number | undefined;
6575
+ msg?: string | undefined;
6576
+ data?: {} | undefined;
6577
+ }>;
6578
+ listWithIterator: (payload?: {
6579
+ params?: {
6580
+ page_size?: number;
6581
+ page_token?: string;
6582
+ };
6583
+ path?: {
6584
+ app_token?: string;
6585
+ };
6586
+ }, options?: IRequestOptions$1) => Promise<{
6587
+ [Symbol.asyncIterator](): AsyncGenerator<{
6588
+ items?: {
6589
+ role_name: string;
6590
+ role_id?: string | undefined;
6591
+ table_roles: Array<{
6592
+ table_name?: string;
6593
+ table_id?: string;
6594
+ table_perm: number;
6595
+ rec_rule?: {
6596
+ conditions: Array<{
6597
+ field_name: string;
6598
+ operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6599
+ value?: Array<string>;
6600
+ field_type?: number;
6601
+ }>;
6602
+ conjunction?: "and" | "or";
6603
+ other_perm?: number;
6604
+ };
6605
+ field_perm?: {};
6606
+ allow_add_record?: boolean;
6607
+ allow_delete_record?: boolean;
6608
+ }>;
6609
+ block_roles?: {
6610
+ block_id: string;
6611
+ block_type?: "dashboard" | undefined;
6612
+ block_perm: number;
6613
+ }[] | undefined;
6614
+ }[] | undefined;
6615
+ total?: number | undefined;
6616
+ } | null, void, unknown>;
6617
+ }>;
6618
+ /**
6619
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=list&version=v1 click to debug }
6620
+ *
6621
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/list document }
6622
+ *
6623
+ * 列出自定义角色
6624
+ *
6625
+ * 列出自定义角色
6626
+ */
6627
+ list: (payload?: {
6628
+ params?: {
6629
+ page_size?: number;
6630
+ page_token?: string;
6631
+ };
6632
+ path?: {
6633
+ app_token?: string;
6634
+ };
6635
+ }, options?: IRequestOptions$1) => Promise<{
6636
+ code?: number | undefined;
6637
+ msg?: string | undefined;
6638
+ data?: {
6639
+ items?: {
6640
+ role_name: string;
6641
+ role_id?: string | undefined;
6642
+ table_roles: Array<{
6643
+ table_name?: string;
6644
+ table_id?: string;
6645
+ table_perm: number;
6646
+ rec_rule?: {
6647
+ conditions: Array<{
6648
+ field_name: string;
6649
+ operator?: "is" | "isNot" | "contains" | "doesNotContain" | "isEmpty" | "isNotEmpty";
6650
+ value?: Array<string>;
6651
+ field_type?: number;
6652
+ }>;
6653
+ conjunction?: "and" | "or";
6654
+ other_perm?: number;
6655
+ };
6656
+ field_perm?: {};
6657
+ allow_add_record?: boolean;
6658
+ allow_delete_record?: boolean;
6659
+ }>;
6660
+ block_roles?: {
6661
+ block_id: string;
6662
+ block_type?: "dashboard" | undefined;
6663
+ block_perm: number;
6664
+ }[] | undefined;
6665
+ }[] | undefined;
6666
+ page_token?: string | undefined;
6667
+ has_more?: boolean | undefined;
6668
+ total?: number | undefined;
6669
+ } | undefined;
6670
+ }>;
6671
+ /**
6672
+ * {@link https://open.feishu.cn/api-explorer?project=bitable&resource=app.role&apiName=update&version=v1 click to debug }
6673
+ *
6674
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/bitable-v1/app-role/update document }
6675
+ *
6676
+ * 更新自定义角色
6677
+ *
6678
+ * 更新自定义角色
6679
+ *
6680
+ * 更新自定义角色是全量更新,会完全覆盖旧的自定义角色设置
6681
+ */
6682
+ update: (payload?: {
6653
6683
  data: {
6654
6684
  role_name: string;
6655
6685
  table_roles: Array<{
@@ -8331,6 +8361,8 @@ declare abstract class Client$1 {
8331
8361
  } | undefined;
8332
8362
  hidden_fields?: string[] | undefined;
8333
8363
  } | undefined;
8364
+ view_public_level?: "Public" | "Locked" | "Private" | undefined;
8365
+ view_private_owner_id?: string | undefined;
8334
8366
  } | undefined;
8335
8367
  } | undefined;
8336
8368
  }>;
@@ -8393,6 +8425,8 @@ declare abstract class Client$1 {
8393
8425
  } | undefined;
8394
8426
  hidden_fields?: string[] | undefined;
8395
8427
  } | undefined;
8428
+ view_public_level?: "Public" | "Locked" | "Private" | undefined;
8429
+ view_private_owner_id?: string | undefined;
8396
8430
  } | undefined;
8397
8431
  } | undefined;
8398
8432
  }>;
@@ -8400,6 +8434,7 @@ declare abstract class Client$1 {
8400
8434
  params?: {
8401
8435
  page_size?: number;
8402
8436
  page_token?: string;
8437
+ user_id_type?: "user_id" | "union_id" | "open_id";
8403
8438
  };
8404
8439
  path?: {
8405
8440
  app_token?: string;
@@ -8425,6 +8460,8 @@ declare abstract class Client$1 {
8425
8460
  } | undefined;
8426
8461
  hidden_fields?: string[] | undefined;
8427
8462
  } | undefined;
8463
+ view_public_level?: "Public" | "Locked" | "Private" | undefined;
8464
+ view_private_owner_id?: string | undefined;
8428
8465
  }[] | undefined;
8429
8466
  total?: number | undefined;
8430
8467
  } | null, void, unknown>;
@@ -8444,6 +8481,7 @@ declare abstract class Client$1 {
8444
8481
  params?: {
8445
8482
  page_size?: number;
8446
8483
  page_token?: string;
8484
+ user_id_type?: "user_id" | "union_id" | "open_id";
8447
8485
  };
8448
8486
  path?: {
8449
8487
  app_token?: string;
@@ -8471,6 +8509,8 @@ declare abstract class Client$1 {
8471
8509
  } | undefined;
8472
8510
  hidden_fields?: string[] | undefined;
8473
8511
  } | undefined;
8512
+ view_public_level?: "Public" | "Locked" | "Private" | undefined;
8513
+ view_private_owner_id?: string | undefined;
8474
8514
  }[] | undefined;
8475
8515
  page_token?: string | undefined;
8476
8516
  has_more?: boolean | undefined;
@@ -8501,10 +8541,10 @@ declare abstract class Client$1 {
8501
8541
  hidden_fields?: Array<string>;
8502
8542
  };
8503
8543
  };
8504
- path: {
8505
- app_token: string;
8506
- table_id: string;
8507
- view_id: string;
8544
+ path?: {
8545
+ app_token?: string;
8546
+ table_id?: string;
8547
+ view_id?: string;
8508
8548
  };
8509
8549
  }, options?: IRequestOptions$1) => Promise<{
8510
8550
  code?: number | undefined;
@@ -8528,6 +8568,8 @@ declare abstract class Client$1 {
8528
8568
  } | undefined;
8529
8569
  hidden_fields?: string[] | undefined;
8530
8570
  } | undefined;
8571
+ view_public_level?: "Public" | "Locked" | "Private" | undefined;
8572
+ view_private_owner_id?: string | undefined;
8531
8573
  } | undefined;
8532
8574
  } | undefined;
8533
8575
  }>;
@@ -15369,6 +15411,11 @@ declare abstract class Client$1 {
15369
15411
  component_id?: string | undefined;
15370
15412
  component_type_id?: string | undefined;
15371
15413
  } | undefined;
15414
+ add_ons?: {
15415
+ component_id?: string | undefined;
15416
+ component_type_id: string;
15417
+ record?: string | undefined;
15418
+ } | undefined;
15372
15419
  mindnote?: {
15373
15420
  token?: string | undefined;
15374
15421
  } | undefined;
@@ -18036,6 +18083,11 @@ declare abstract class Client$1 {
18036
18083
  component_id?: string | undefined;
18037
18084
  component_type_id?: string | undefined;
18038
18085
  } | undefined;
18086
+ add_ons?: {
18087
+ component_id?: string | undefined;
18088
+ component_type_id: string;
18089
+ record?: string | undefined;
18090
+ } | undefined;
18039
18091
  mindnote?: {
18040
18092
  token?: string | undefined;
18041
18093
  } | undefined;
@@ -20681,6 +20733,11 @@ declare abstract class Client$1 {
20681
20733
  component_id?: string | undefined;
20682
20734
  component_type_id?: string | undefined;
20683
20735
  } | undefined;
20736
+ add_ons?: {
20737
+ component_id?: string | undefined;
20738
+ component_type_id: string;
20739
+ record?: string | undefined;
20740
+ } | undefined;
20684
20741
  mindnote?: {
20685
20742
  token?: string | undefined;
20686
20743
  } | undefined;
@@ -23341,6 +23398,11 @@ declare abstract class Client$1 {
23341
23398
  component_id?: string | undefined;
23342
23399
  component_type_id?: string | undefined;
23343
23400
  } | undefined;
23401
+ add_ons?: {
23402
+ component_id?: string | undefined;
23403
+ component_type_id: string;
23404
+ record?: string | undefined;
23405
+ } | undefined;
23344
23406
  mindnote?: {
23345
23407
  token?: string | undefined;
23346
23408
  } | undefined;
@@ -26309,6 +26371,11 @@ declare abstract class Client$1 {
26309
26371
  component_id?: string | undefined;
26310
26372
  component_type_id?: string | undefined;
26311
26373
  } | undefined;
26374
+ add_ons?: {
26375
+ component_id?: string | undefined;
26376
+ component_type_id: string;
26377
+ record?: string | undefined;
26378
+ } | undefined;
26312
26379
  mindnote?: {
26313
26380
  token?: string | undefined;
26314
26381
  } | undefined;
@@ -28787,6 +28854,12 @@ declare abstract class Client$1 {
28787
28854
  };
28788
28855
  };
28789
28856
  image?: {};
28857
+ isv?: {};
28858
+ add_ons?: {
28859
+ component_id?: string;
28860
+ component_type_id: string;
28861
+ record?: string;
28862
+ };
28790
28863
  sheet?: {
28791
28864
  row_size?: number;
28792
28865
  column_size?: number;
@@ -31118,6 +31191,11 @@ declare abstract class Client$1 {
31118
31191
  component_id?: string | undefined;
31119
31192
  component_type_id?: string | undefined;
31120
31193
  } | undefined;
31194
+ add_ons?: {
31195
+ component_id?: string | undefined;
31196
+ component_type_id: string;
31197
+ record?: string | undefined;
31198
+ } | undefined;
31121
31199
  mindnote?: {
31122
31200
  token?: string | undefined;
31123
31201
  } | undefined;
@@ -33772,6 +33850,11 @@ declare abstract class Client$1 {
33772
33850
  component_id?: string | undefined;
33773
33851
  component_type_id?: string | undefined;
33774
33852
  } | undefined;
33853
+ add_ons?: {
33854
+ component_id?: string | undefined;
33855
+ component_type_id: string;
33856
+ record?: string | undefined;
33857
+ } | undefined;
33775
33858
  mindnote?: {
33776
33859
  token?: string | undefined;
33777
33860
  } | undefined;
@@ -36433,6 +36516,11 @@ declare abstract class Client$1 {
36433
36516
  component_id?: string | undefined;
36434
36517
  component_type_id?: string | undefined;
36435
36518
  } | undefined;
36519
+ add_ons?: {
36520
+ component_id?: string | undefined;
36521
+ component_type_id: string;
36522
+ record?: string | undefined;
36523
+ } | undefined;
36436
36524
  mindnote?: {
36437
36525
  token?: string | undefined;
36438
36526
  } | undefined;
@@ -38951,94 +39039,9 @@ declare abstract class Client$1 {
38951
39039
  */
38952
39040
  exam: {};
38953
39041
  /**
38954
- * AI能力
38955
- */
38956
- face_detection: {
38957
- /**
38958
- * 图片
39042
+
38959
39043
  */
38960
- image: {
38961
- /**
38962
- * {@link https://open.feishu.cn/api-explorer?project=face_detection&resource=image&apiName=detect_face_attributes&version=v1 click to debug }
38963
- *
38964
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/ai/face_detection-v1/image/detect_face_attributes document }
38965
- *
38966
- * 人脸检测和属性分析
38967
- *
38968
- * 检测图片中的人脸属性和质量等信息
38969
- *
38970
- * 注意:返回值为 -1 表示该功能还暂未实现
38971
- */
38972
- detectFaceAttributes: (payload?: {
38973
- data?: {
38974
- image?: string;
38975
- };
38976
- }, options?: IRequestOptions$1) => Promise<{
38977
- code?: number | undefined;
38978
- msg?: string | undefined;
38979
- data?: {
38980
- image_info: {
38981
- width?: number;
38982
- height?: number;
38983
- };
38984
- face_infos: Array<{
38985
- position?: {
38986
- upper_left: {
38987
- x: number;
38988
- y: number;
38989
- };
38990
- lower_right: {
38991
- x: number;
38992
- y: number;
38993
- };
38994
- };
38995
- attribute?: {
38996
- gender?: {
38997
- type: number;
38998
- probability: number;
38999
- };
39000
- age?: number;
39001
- emotion?: {
39002
- type: number;
39003
- probability: number;
39004
- };
39005
- beauty?: number;
39006
- pose?: {
39007
- pitch?: number;
39008
- yaw?: number;
39009
- roll?: number;
39010
- };
39011
- hat?: {
39012
- type: number;
39013
- probability: number;
39014
- };
39015
- glass?: {
39016
- type: number;
39017
- probability: number;
39018
- };
39019
- mask?: {
39020
- type: number;
39021
- probability: number;
39022
- };
39023
- };
39024
- quality?: {
39025
- sharpness?: number;
39026
- brightness?: number;
39027
- occlude?: {
39028
- eyebrow?: number;
39029
- nose?: number;
39030
- cheek?: number;
39031
- mouth?: number;
39032
- chin?: number;
39033
- left_eye?: number;
39034
- right_eye?: number;
39035
- };
39036
- };
39037
- }>;
39038
- } | undefined;
39039
- }>;
39040
- };
39041
- };
39044
+ face_detection: {};
39042
39045
  /**
39043
39046
 
39044
39047
  */
@@ -41132,7 +41135,7 @@ declare abstract class Client$1 {
41132
41135
  */
41133
41136
  hire: {
41134
41137
  /**
41135
- * 入职
41138
+ * 投递
41136
41139
  */
41137
41140
  application: {
41138
41141
  /**
@@ -50928,6 +50931,342 @@ declare abstract class Client$1 {
50928
50931
  data?: {} | undefined;
50929
50932
  }>;
50930
50933
  };
50934
+ /**
50935
+ * meeting_list
50936
+ */
50937
+ meetingList: {
50938
+ getWithIterator: (payload?: {
50939
+ params: {
50940
+ start_time: string;
50941
+ end_time: string;
50942
+ meeting_no?: string;
50943
+ user_id?: string;
50944
+ room_id?: string;
50945
+ page_size?: number;
50946
+ page_token?: string;
50947
+ user_id_type?: "user_id" | "union_id" | "open_id";
50948
+ };
50949
+ }, options?: IRequestOptions$1) => Promise<{
50950
+ [Symbol.asyncIterator](): AsyncGenerator<{
50951
+ meeting_list?: {
50952
+ meeting_id?: string | undefined;
50953
+ meeting_topic?: string | undefined;
50954
+ organizer?: string | undefined;
50955
+ department?: string | undefined;
50956
+ user_id?: string | undefined;
50957
+ employee_id?: string | undefined;
50958
+ email?: string | undefined;
50959
+ mobile?: string | undefined;
50960
+ meeting_start_time?: string | undefined;
50961
+ meeting_end_time?: string | undefined;
50962
+ meeting_duration?: string | undefined;
50963
+ number_of_participants?: string | undefined;
50964
+ audio?: boolean | undefined;
50965
+ video?: boolean | undefined;
50966
+ sharing?: boolean | undefined;
50967
+ recording?: boolean | undefined;
50968
+ telephone?: boolean | undefined;
50969
+ }[] | undefined;
50970
+ } | null, void, unknown>;
50971
+ }>;
50972
+ /**
50973
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=meeting_list&apiName=get&version=v1 click to debug }
50974
+ *
50975
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=vc&resource=meeting_list&version=v1 document }
50976
+ */
50977
+ get: (payload?: {
50978
+ params: {
50979
+ start_time: string;
50980
+ end_time: string;
50981
+ meeting_no?: string;
50982
+ user_id?: string;
50983
+ room_id?: string;
50984
+ page_size?: number;
50985
+ page_token?: string;
50986
+ user_id_type?: "user_id" | "union_id" | "open_id";
50987
+ };
50988
+ }, options?: IRequestOptions$1) => Promise<{
50989
+ code?: number | undefined;
50990
+ msg?: string | undefined;
50991
+ data?: {
50992
+ meeting_list?: {
50993
+ meeting_id?: string | undefined;
50994
+ meeting_topic?: string | undefined;
50995
+ organizer?: string | undefined;
50996
+ department?: string | undefined;
50997
+ user_id?: string | undefined;
50998
+ employee_id?: string | undefined;
50999
+ email?: string | undefined;
51000
+ mobile?: string | undefined;
51001
+ meeting_start_time?: string | undefined;
51002
+ meeting_end_time?: string | undefined;
51003
+ meeting_duration?: string | undefined;
51004
+ number_of_participants?: string | undefined;
51005
+ audio?: boolean | undefined;
51006
+ video?: boolean | undefined;
51007
+ sharing?: boolean | undefined;
51008
+ recording?: boolean | undefined;
51009
+ telephone?: boolean | undefined;
51010
+ }[] | undefined;
51011
+ page_token?: string | undefined;
51012
+ has_more?: boolean | undefined;
51013
+ } | undefined;
51014
+ }>;
51015
+ };
51016
+ /**
51017
+ * participant_list
51018
+ */
51019
+ participantList: {
51020
+ getWithIterator: (payload?: {
51021
+ params: {
51022
+ meeting_start_time: string;
51023
+ meeting_end_time: string;
51024
+ meeting_no: string;
51025
+ user_id?: string;
51026
+ room_id?: string;
51027
+ page_size?: number;
51028
+ page_token?: string;
51029
+ user_id_type?: "user_id" | "union_id" | "open_id";
51030
+ };
51031
+ }, options?: IRequestOptions$1) => Promise<{
51032
+ [Symbol.asyncIterator](): AsyncGenerator<{
51033
+ participants?: {
51034
+ participant_name?: string | undefined;
51035
+ department?: string | undefined;
51036
+ user_id?: string | undefined;
51037
+ employee_id?: string | undefined;
51038
+ phone?: string | undefined;
51039
+ email?: string | undefined;
51040
+ device?: string | undefined;
51041
+ app_version?: string | undefined;
51042
+ public_ip?: string | undefined;
51043
+ internal_ip?: string | undefined;
51044
+ use_rtc_proxy?: boolean | undefined;
51045
+ location?: string | undefined;
51046
+ network_type?: string | undefined;
51047
+ protocol?: string | undefined;
51048
+ microphone?: string | undefined;
51049
+ speaker?: string | undefined;
51050
+ camera?: string | undefined;
51051
+ audio?: boolean | undefined;
51052
+ video?: boolean | undefined;
51053
+ sharing?: boolean | undefined;
51054
+ join_time?: string | undefined;
51055
+ leave_time?: string | undefined;
51056
+ time_in_meeting?: string | undefined;
51057
+ leave_reason?: string | undefined;
51058
+ }[] | undefined;
51059
+ } | null, void, unknown>;
51060
+ }>;
51061
+ /**
51062
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=participant_list&apiName=get&version=v1 click to debug }
51063
+ *
51064
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=vc&resource=participant_list&version=v1 document }
51065
+ */
51066
+ get: (payload?: {
51067
+ params: {
51068
+ meeting_start_time: string;
51069
+ meeting_end_time: string;
51070
+ meeting_no: string;
51071
+ user_id?: string;
51072
+ room_id?: string;
51073
+ page_size?: number;
51074
+ page_token?: string;
51075
+ user_id_type?: "user_id" | "union_id" | "open_id";
51076
+ };
51077
+ }, options?: IRequestOptions$1) => Promise<{
51078
+ code?: number | undefined;
51079
+ msg?: string | undefined;
51080
+ data?: {
51081
+ participants?: {
51082
+ participant_name?: string | undefined;
51083
+ department?: string | undefined;
51084
+ user_id?: string | undefined;
51085
+ employee_id?: string | undefined;
51086
+ phone?: string | undefined;
51087
+ email?: string | undefined;
51088
+ device?: string | undefined;
51089
+ app_version?: string | undefined;
51090
+ public_ip?: string | undefined;
51091
+ internal_ip?: string | undefined;
51092
+ use_rtc_proxy?: boolean | undefined;
51093
+ location?: string | undefined;
51094
+ network_type?: string | undefined;
51095
+ protocol?: string | undefined;
51096
+ microphone?: string | undefined;
51097
+ speaker?: string | undefined;
51098
+ camera?: string | undefined;
51099
+ audio?: boolean | undefined;
51100
+ video?: boolean | undefined;
51101
+ sharing?: boolean | undefined;
51102
+ join_time?: string | undefined;
51103
+ leave_time?: string | undefined;
51104
+ time_in_meeting?: string | undefined;
51105
+ leave_reason?: string | undefined;
51106
+ }[] | undefined;
51107
+ page_token?: string | undefined;
51108
+ has_more?: boolean | undefined;
51109
+ } | undefined;
51110
+ }>;
51111
+ };
51112
+ /**
51113
+ * participant_quality_list
51114
+ */
51115
+ participantQualityList: {
51116
+ getWithIterator: (payload?: {
51117
+ params: {
51118
+ meeting_start_time: string;
51119
+ meeting_end_time: string;
51120
+ meeting_no: string;
51121
+ join_time: string;
51122
+ user_id?: string;
51123
+ room_id?: string;
51124
+ page_size?: number;
51125
+ page_token?: string;
51126
+ user_id_type?: "user_id" | "union_id" | "open_id";
51127
+ };
51128
+ }, options?: IRequestOptions$1) => Promise<{
51129
+ [Symbol.asyncIterator](): AsyncGenerator<{
51130
+ participant_quality_list?: {
51131
+ network?: {
51132
+ time?: string | undefined;
51133
+ network_delay?: string | undefined;
51134
+ bitrate_received?: string | undefined;
51135
+ packet_loss_avg_received?: string | undefined;
51136
+ packet_loss_max_received?: string | undefined;
51137
+ bitrate_sent?: string | undefined;
51138
+ packet_loss_avg_sent?: string | undefined;
51139
+ packet_loss_max_sent?: string | undefined;
51140
+ } | undefined;
51141
+ audio?: {
51142
+ time?: string | undefined;
51143
+ mic_input_volume?: string | undefined;
51144
+ speaker_volume?: string | undefined;
51145
+ bitrate_received?: string | undefined;
51146
+ latency_received?: string | undefined;
51147
+ jitter_received?: string | undefined;
51148
+ bitrate_sent?: string | undefined;
51149
+ latency_sent?: string | undefined;
51150
+ jitter_sent?: string | undefined;
51151
+ } | undefined;
51152
+ video?: {
51153
+ time?: string | undefined;
51154
+ bitrate_received?: string | undefined;
51155
+ latency_received?: string | undefined;
51156
+ jitter_received?: string | undefined;
51157
+ maximum_resolution_received?: string | undefined;
51158
+ framerate_received?: string | undefined;
51159
+ bitrate_sent?: string | undefined;
51160
+ latency_sent?: string | undefined;
51161
+ jitter_sent?: string | undefined;
51162
+ maximum_resolution_sent?: string | undefined;
51163
+ framerate_sent?: string | undefined;
51164
+ } | undefined;
51165
+ screen_sharing?: {
51166
+ time?: string | undefined;
51167
+ bitrate_received?: string | undefined;
51168
+ latency_received?: string | undefined;
51169
+ jitter_received?: string | undefined;
51170
+ maximum_resolution_received?: string | undefined;
51171
+ framerate_received?: string | undefined;
51172
+ bitrate_sent?: string | undefined;
51173
+ latency_sent?: string | undefined;
51174
+ jitter_sent?: string | undefined;
51175
+ maximum_resolution_sent?: string | undefined;
51176
+ framerate_sent?: string | undefined;
51177
+ } | undefined;
51178
+ cpu_usage?: {
51179
+ time?: string | undefined;
51180
+ client_avg_cpu_usage?: string | undefined;
51181
+ client_max_cpu_usage?: string | undefined;
51182
+ system_avg_cpu_usage?: string | undefined;
51183
+ system_max_cpu_usage?: string | undefined;
51184
+ } | undefined;
51185
+ }[] | undefined;
51186
+ } | null, void, unknown>;
51187
+ }>;
51188
+ /**
51189
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=participant_quality_list&apiName=get&version=v1 click to debug }
51190
+ *
51191
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=vc&resource=participant_quality_list&version=v1 document }
51192
+ */
51193
+ get: (payload?: {
51194
+ params: {
51195
+ meeting_start_time: string;
51196
+ meeting_end_time: string;
51197
+ meeting_no: string;
51198
+ join_time: string;
51199
+ user_id?: string;
51200
+ room_id?: string;
51201
+ page_size?: number;
51202
+ page_token?: string;
51203
+ user_id_type?: "user_id" | "union_id" | "open_id";
51204
+ };
51205
+ }, options?: IRequestOptions$1) => Promise<{
51206
+ code?: number | undefined;
51207
+ msg?: string | undefined;
51208
+ data?: {
51209
+ participant_quality_list?: {
51210
+ network?: {
51211
+ time?: string | undefined;
51212
+ network_delay?: string | undefined;
51213
+ bitrate_received?: string | undefined;
51214
+ packet_loss_avg_received?: string | undefined;
51215
+ packet_loss_max_received?: string | undefined;
51216
+ bitrate_sent?: string | undefined;
51217
+ packet_loss_avg_sent?: string | undefined;
51218
+ packet_loss_max_sent?: string | undefined;
51219
+ } | undefined;
51220
+ audio?: {
51221
+ time?: string | undefined;
51222
+ mic_input_volume?: string | undefined;
51223
+ speaker_volume?: string | undefined;
51224
+ bitrate_received?: string | undefined;
51225
+ latency_received?: string | undefined;
51226
+ jitter_received?: string | undefined;
51227
+ bitrate_sent?: string | undefined;
51228
+ latency_sent?: string | undefined;
51229
+ jitter_sent?: string | undefined;
51230
+ } | undefined;
51231
+ video?: {
51232
+ time?: string | undefined;
51233
+ bitrate_received?: string | undefined;
51234
+ latency_received?: string | undefined;
51235
+ jitter_received?: string | undefined;
51236
+ maximum_resolution_received?: string | undefined;
51237
+ framerate_received?: string | undefined;
51238
+ bitrate_sent?: string | undefined;
51239
+ latency_sent?: string | undefined;
51240
+ jitter_sent?: string | undefined;
51241
+ maximum_resolution_sent?: string | undefined;
51242
+ framerate_sent?: string | undefined;
51243
+ } | undefined;
51244
+ screen_sharing?: {
51245
+ time?: string | undefined;
51246
+ bitrate_received?: string | undefined;
51247
+ latency_received?: string | undefined;
51248
+ jitter_received?: string | undefined;
51249
+ maximum_resolution_received?: string | undefined;
51250
+ framerate_received?: string | undefined;
51251
+ bitrate_sent?: string | undefined;
51252
+ latency_sent?: string | undefined;
51253
+ jitter_sent?: string | undefined;
51254
+ maximum_resolution_sent?: string | undefined;
51255
+ framerate_sent?: string | undefined;
51256
+ } | undefined;
51257
+ cpu_usage?: {
51258
+ time?: string | undefined;
51259
+ client_avg_cpu_usage?: string | undefined;
51260
+ client_max_cpu_usage?: string | undefined;
51261
+ system_avg_cpu_usage?: string | undefined;
51262
+ system_max_cpu_usage?: string | undefined;
51263
+ } | undefined;
51264
+ }[] | undefined;
51265
+ page_token?: string | undefined;
51266
+ has_more?: boolean | undefined;
51267
+ } | undefined;
51268
+ }>;
51269
+ };
50931
51270
  /**
50932
51271
  * 会议报告
50933
51272
  */
@@ -51272,6 +51611,66 @@ declare abstract class Client$1 {
51272
51611
  } | undefined;
51273
51612
  }>;
51274
51613
  };
51614
+ /**
51615
+ * reserve_config.admin
51616
+ */
51617
+ reserveConfigAdmin: {
51618
+ /**
51619
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=reserve_config.admin&apiName=get&version=v1 click to debug }
51620
+ *
51621
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=vc&resource=reserve_config.admin&version=v1 document }
51622
+ */
51623
+ get: (payload?: {
51624
+ params: {
51625
+ scope_type: number;
51626
+ user_id_type?: "user_id" | "union_id" | "open_id";
51627
+ };
51628
+ path?: {
51629
+ reserve_config_id?: string;
51630
+ };
51631
+ }, options?: IRequestOptions$1) => Promise<{
51632
+ code?: number | undefined;
51633
+ msg?: string | undefined;
51634
+ data?: {
51635
+ reserve_admin_config: {
51636
+ depts?: Array<{
51637
+ department_id: string;
51638
+ }>;
51639
+ users?: Array<{
51640
+ user_id: string;
51641
+ }>;
51642
+ };
51643
+ } | undefined;
51644
+ }>;
51645
+ /**
51646
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=reserve_config.admin&apiName=patch&version=v1 click to debug }
51647
+ *
51648
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=vc&resource=reserve_config.admin&version=v1 document }
51649
+ */
51650
+ patch: (payload?: {
51651
+ data: {
51652
+ scope_type: number;
51653
+ reserve_admin_config: {
51654
+ depts?: Array<{
51655
+ department_id: string;
51656
+ }>;
51657
+ users?: Array<{
51658
+ user_id: string;
51659
+ }>;
51660
+ };
51661
+ };
51662
+ params?: {
51663
+ user_id_type?: "user_id" | "union_id" | "open_id";
51664
+ };
51665
+ path?: {
51666
+ reserve_config_id?: string;
51667
+ };
51668
+ }, options?: IRequestOptions$1) => Promise<{
51669
+ code?: number | undefined;
51670
+ msg?: string | undefined;
51671
+ data?: {} | undefined;
51672
+ }>;
51673
+ };
51275
51674
  /**
51276
51675
  * reserve_config
51277
51676
  */
@@ -51372,6 +51771,86 @@ declare abstract class Client$1 {
51372
51771
  } | undefined;
51373
51772
  }>;
51374
51773
  };
51774
+ /**
51775
+ * resource_reservation_list
51776
+ */
51777
+ resourceReservationList: {
51778
+ getWithIterator: (payload?: {
51779
+ params: {
51780
+ room_level_id: string;
51781
+ need_topic?: boolean;
51782
+ start_time: string;
51783
+ end_time: string;
51784
+ room_ids?: number;
51785
+ is_exclude?: boolean;
51786
+ page_size?: number;
51787
+ page_token?: string;
51788
+ };
51789
+ }, options?: IRequestOptions$1) => Promise<{
51790
+ [Symbol.asyncIterator](): AsyncGenerator<{
51791
+ room_reservation_list?: {
51792
+ room_name?: string | undefined;
51793
+ event_title?: string | undefined;
51794
+ reserver?: string | undefined;
51795
+ department_of_reserver?: string | undefined;
51796
+ guests_number?: string | undefined;
51797
+ accepted_number?: string | undefined;
51798
+ event_start_time?: string | undefined;
51799
+ event_end_time?: string | undefined;
51800
+ event_duration?: string | undefined;
51801
+ reservation_status?: string | undefined;
51802
+ check_in_device?: string | undefined;
51803
+ room_check_in_status?: string | undefined;
51804
+ check_in_time?: string | undefined;
51805
+ is_release_early?: string | undefined;
51806
+ releasing_person?: string | undefined;
51807
+ releasing_time?: string | undefined;
51808
+ }[] | undefined;
51809
+ } | null, void, unknown>;
51810
+ }>;
51811
+ /**
51812
+ * {@link https://open.feishu.cn/api-explorer?project=vc&resource=resource_reservation_list&apiName=get&version=v1 click to debug }
51813
+ *
51814
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=vc&resource=resource_reservation_list&version=v1 document }
51815
+ */
51816
+ get: (payload?: {
51817
+ params: {
51818
+ room_level_id: string;
51819
+ need_topic?: boolean;
51820
+ start_time: string;
51821
+ end_time: string;
51822
+ room_ids?: number;
51823
+ is_exclude?: boolean;
51824
+ page_size?: number;
51825
+ page_token?: string;
51826
+ };
51827
+ }, options?: IRequestOptions$1) => Promise<{
51828
+ code?: number | undefined;
51829
+ msg?: string | undefined;
51830
+ data?: {
51831
+ room_reservation_list?: {
51832
+ room_name?: string | undefined;
51833
+ event_title?: string | undefined;
51834
+ reserver?: string | undefined;
51835
+ department_of_reserver?: string | undefined;
51836
+ guests_number?: string | undefined;
51837
+ accepted_number?: string | undefined;
51838
+ event_start_time?: string | undefined;
51839
+ event_end_time?: string | undefined;
51840
+ event_duration?: string | undefined;
51841
+ reservation_status?: string | undefined;
51842
+ check_in_device?: string | undefined;
51843
+ room_check_in_status?: string | undefined;
51844
+ check_in_time?: string | undefined;
51845
+ is_release_early?: string | undefined;
51846
+ releasing_person?: string | undefined;
51847
+ releasing_time?: string | undefined;
51848
+ }[] | undefined;
51849
+ page_token?: string | undefined;
51850
+ has_more?: boolean | undefined;
51851
+ } | undefined;
51852
+ }>;
51853
+ };
51375
51854
  /**
51376
51855
  * 会议室
51377
51856
  */
@@ -56587,6 +57066,55 @@ interface IHandles extends IOtherEventHandles {
56587
57066
  user_type?: number;
56588
57067
  };
56589
57068
  }) => Promise<any> | any;
57069
+ /**
57070
+
57071
+ */
57072
+ "vc.reserve_config.updated_v1"?: (data: {
57073
+ event_id?: string;
57074
+ token?: string;
57075
+ create_time?: string;
57076
+ event_type?: string;
57077
+ tenant_key?: string;
57078
+ ts?: string;
57079
+ uuid?: string;
57080
+ type?: string;
57081
+ app_id?: string;
57082
+ scope_id?: string;
57083
+ scope_type?: number;
57084
+ approve_config?: {
57085
+ approval_switch?: number;
57086
+ approval_condition?: number;
57087
+ meeting_duration?: number;
57088
+ approvers?: Array<{
57089
+ user_id?: {
57090
+ union_id?: string;
57091
+ user_id?: string;
57092
+ open_id?: string;
57093
+ };
57094
+ }>;
57095
+ };
57096
+ time_config?: {
57097
+ time_switch: number;
57098
+ days_in_advance?: number;
57099
+ opening_hour?: string;
57100
+ start_time?: string;
57101
+ end_time?: string;
57102
+ max_duration?: number;
57103
+ };
57104
+ reserve_scope_config?: {
57105
+ allow_all_users?: number;
57106
+ allow_users?: Array<{
57107
+ user_id?: {
57108
+ union_id?: string;
57109
+ user_id?: string;
57110
+ open_id?: string;
57111
+ };
57112
+ }>;
57113
+ allow_depts?: Array<{
57114
+ department_id: string;
57115
+ }>;
57116
+ };
57117
+ }) => Promise<any> | any;
56590
57118
  /**
56591
57119
  * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room/events/created document }
56592
57120
  *
@@ -56698,6 +57226,66 @@ interface IHandles extends IOtherEventHandles {
56698
57226
  }>;
56699
57227
  };
56700
57228
  }) => Promise<any> | any;
57229
+ /**
57230
+
57231
+ */
57232
+ "vc.room_level.created_v1"?: (data: {
57233
+ event_id?: string;
57234
+ token?: string;
57235
+ create_time?: string;
57236
+ event_type?: string;
57237
+ tenant_key?: string;
57238
+ ts?: string;
57239
+ uuid?: string;
57240
+ type?: string;
57241
+ app_id?: string;
57242
+ room_level?: {
57243
+ room_level_id?: string;
57244
+ name?: string;
57245
+ parent_id?: string;
57246
+ path?: Array<string>;
57247
+ has_child?: boolean;
57248
+ custom_group_id?: string;
57249
+ };
57250
+ }) => Promise<any> | any;
57251
+ /**
57252
+
57253
+ */
57254
+ "vc.room_level.deleted_v1"?: (data: {
57255
+ event_id?: string;
57256
+ token?: string;
57257
+ create_time?: string;
57258
+ event_type?: string;
57259
+ tenant_key?: string;
57260
+ ts?: string;
57261
+ uuid?: string;
57262
+ type?: string;
57263
+ app_id?: string;
57264
+ room_level_id: string;
57265
+ delete_child?: boolean;
57266
+ }) => Promise<any> | any;
57267
+ /**
57268
+
57269
+ */
57270
+ "vc.room_level.updated_v1"?: (data: {
57271
+ event_id?: string;
57272
+ token?: string;
57273
+ create_time?: string;
57274
+ event_type?: string;
57275
+ tenant_key?: string;
57276
+ ts?: string;
57277
+ uuid?: string;
57278
+ type?: string;
57279
+ app_id?: string;
57280
+ room_level?: {
57281
+ room_level_id?: string;
57282
+ name?: string;
57283
+ parent_id?: string;
57284
+ path?: Array<string>;
57285
+ has_child?: boolean;
57286
+ custom_group_id?: string;
57287
+ };
57288
+ }) => Promise<any> | any;
56701
57289
  }
56702
57290
 
56703
57291
  declare class AESCipher {
@@ -56921,4 +57509,4 @@ interface InteractiveCardSelectMenuActionItem extends InteractiveCardActionBaseI
56921
57509
  value?: Record<string, any>;
56922
57510
  }
56923
57511
 
56924
- export { AESCipher, AppType, CAppTicket, CardActionHandler, Client, Domain, EventDispatcher, IHandles as EventHandles, InteractiveCard, InteractiveCardActionEvent, InteractiveCardActionItem, InteractiveCardButtonActionItem, InteractiveCardDatePickerActionItem, InteractiveCardDivElement, InteractiveCardDividerElement, InteractiveCardElement, InteractiveCardField, InteractiveCardImageElement, InteractiveCardImageItem, InteractiveCardLarkMdItem, InteractiveCardMarkdownElement, InteractiveCardNoteElement, InteractiveCardOverflowActionItem, InteractiveCardPlainTextItem, InteractiveCardSelectMenuActionItem, InteractiveCardTextItem, InteractiveCardTitle, InteractiveCardUrlItem, InterfaceCardActionElement, LoggerLevel, adaptDefault, adaptExpress, adaptKoa, adaptKoaRouter, generateChallenge, withAll, withHelpDeskCredential, withTenantKey, withTenantToken, withUserAccessToken };
57512
+ export { AESCipher, AppType, CAppTicket, CTenantAccessToken, Cache, CardActionHandler, Client, Domain, EventDispatcher, IHandles as EventHandles, InteractiveCard, InteractiveCardActionEvent, InteractiveCardActionItem, InteractiveCardButtonActionItem, InteractiveCardDatePickerActionItem, InteractiveCardDivElement, InteractiveCardDividerElement, InteractiveCardElement, InteractiveCardField, InteractiveCardImageElement, InteractiveCardImageItem, InteractiveCardLarkMdItem, InteractiveCardMarkdownElement, InteractiveCardNoteElement, InteractiveCardOverflowActionItem, InteractiveCardPlainTextItem, InteractiveCardSelectMenuActionItem, InteractiveCardTextItem, InteractiveCardTitle, InteractiveCardUrlItem, InterfaceCardActionElement, LoggerLevel, adaptDefault, adaptExpress, adaptKoa, adaptKoaRouter, generateChallenge, withAll, withHelpDeskCredential, withTenantKey, withTenantToken, withUserAccessToken };