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