@larksuiteoapi/node-sdk 1.19.0 → 1.21.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 +635 -142
- package/lib/index.js +635 -142
- package/package.json +1 -1
- package/types/index.d.ts +1874 -346
package/types/index.d.ts
CHANGED
|
@@ -394,7 +394,7 @@ declare abstract class Client$1 {
|
|
|
394
394
|
};
|
|
395
395
|
};
|
|
396
396
|
/**
|
|
397
|
-
*
|
|
397
|
+
* 管理后台-数据报表
|
|
398
398
|
*/
|
|
399
399
|
admin: {
|
|
400
400
|
/**
|
|
@@ -1187,6 +1187,59 @@ declare abstract class Client$1 {
|
|
|
1187
1187
|
* 应用使用情况
|
|
1188
1188
|
*/
|
|
1189
1189
|
applicationAppUsage: {
|
|
1190
|
+
/**
|
|
1191
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.app_usage&apiName=department_overview&version=v6 click to debug }
|
|
1192
|
+
*
|
|
1193
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/application-v6/application-app_usage/department_overview document }
|
|
1194
|
+
*
|
|
1195
|
+
* 获取多部门应用使用概览(灰度租户可见)
|
|
1196
|
+
*
|
|
1197
|
+
* 查看应用在某一天/某一周/某一个月的使用数据,可以根据部门做多层子部门的筛选
|
|
1198
|
+
*
|
|
1199
|
+
* 1. 仅支持企业版/旗舰版租户使用;2. 一般每天早上10点产出前一天的数据;3. 已经支持的指标包括:应用的活跃用户数、累计用户数、新增用户数、访问页面数、打开次数;4. 按照部门查看数据时,可以分别展示当前部门以及其子部门的使用情况;5. 如果查询的部门在查询日期没有使用过应用,只返回指标:应用的活跃用户数指标;6. 数据从飞书4.10版本开始统计,使用飞书版本4.10及以下版本的用户数据不会被统计到;7. 调用频控为100次/分
|
|
1200
|
+
*/
|
|
1201
|
+
departmentOverview: (payload?: {
|
|
1202
|
+
data: {
|
|
1203
|
+
date: string;
|
|
1204
|
+
cycle_type: number;
|
|
1205
|
+
department_id?: string;
|
|
1206
|
+
recursion?: number;
|
|
1207
|
+
page_size?: number;
|
|
1208
|
+
page_token?: string;
|
|
1209
|
+
};
|
|
1210
|
+
params?: {
|
|
1211
|
+
department_id_type?: "department_id" | "open_department_id";
|
|
1212
|
+
};
|
|
1213
|
+
path: {
|
|
1214
|
+
app_id: string;
|
|
1215
|
+
};
|
|
1216
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
1217
|
+
code?: number | undefined;
|
|
1218
|
+
msg?: string | undefined;
|
|
1219
|
+
data?: {
|
|
1220
|
+
has_more?: boolean | undefined;
|
|
1221
|
+
page_token?: string | undefined;
|
|
1222
|
+
items?: {
|
|
1223
|
+
department_id?: string | undefined;
|
|
1224
|
+
app?: {
|
|
1225
|
+
metric_name: string;
|
|
1226
|
+
metric_value: number;
|
|
1227
|
+
}[] | undefined;
|
|
1228
|
+
gadget?: {
|
|
1229
|
+
metric_name: string;
|
|
1230
|
+
metric_value: number;
|
|
1231
|
+
}[] | undefined;
|
|
1232
|
+
webapp?: {
|
|
1233
|
+
metric_name: string;
|
|
1234
|
+
metric_value: number;
|
|
1235
|
+
}[] | undefined;
|
|
1236
|
+
bot?: {
|
|
1237
|
+
metric_name: string;
|
|
1238
|
+
metric_value: number;
|
|
1239
|
+
}[] | undefined;
|
|
1240
|
+
}[] | undefined;
|
|
1241
|
+
} | undefined;
|
|
1242
|
+
}>;
|
|
1190
1243
|
/**
|
|
1191
1244
|
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.app_usage&apiName=overview&version=v6 click to debug }
|
|
1192
1245
|
*
|
|
@@ -1672,6 +1725,42 @@ declare abstract class Client$1 {
|
|
|
1672
1725
|
data?: {} | undefined;
|
|
1673
1726
|
}>;
|
|
1674
1727
|
};
|
|
1728
|
+
/**
|
|
1729
|
+
* application.contacts_range
|
|
1730
|
+
*/
|
|
1731
|
+
applicationContactsRange: {
|
|
1732
|
+
/**
|
|
1733
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.contacts_range&apiName=patch&version=v6 click to debug }
|
|
1734
|
+
*
|
|
1735
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=application&resource=application.contacts_range&version=v6 document }
|
|
1736
|
+
*/
|
|
1737
|
+
patch: (payload?: {
|
|
1738
|
+
data: {
|
|
1739
|
+
contacts_range_type: "equal_to_availability" | "some" | "all";
|
|
1740
|
+
add_visible_list?: {
|
|
1741
|
+
user_ids?: Array<string>;
|
|
1742
|
+
department_ids?: Array<string>;
|
|
1743
|
+
group_ids?: Array<string>;
|
|
1744
|
+
};
|
|
1745
|
+
del_visible_list?: {
|
|
1746
|
+
user_ids?: Array<string>;
|
|
1747
|
+
department_ids?: Array<string>;
|
|
1748
|
+
group_ids?: Array<string>;
|
|
1749
|
+
};
|
|
1750
|
+
};
|
|
1751
|
+
params?: {
|
|
1752
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
1753
|
+
department_id_type?: "open_department_id" | "department_id";
|
|
1754
|
+
};
|
|
1755
|
+
path: {
|
|
1756
|
+
app_id: string;
|
|
1757
|
+
};
|
|
1758
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
1759
|
+
code?: number | undefined;
|
|
1760
|
+
msg?: string | undefined;
|
|
1761
|
+
data?: {} | undefined;
|
|
1762
|
+
}>;
|
|
1763
|
+
};
|
|
1675
1764
|
/**
|
|
1676
1765
|
* 应用
|
|
1677
1766
|
*/
|
|
@@ -1980,6 +2069,47 @@ declare abstract class Client$1 {
|
|
|
1980
2069
|
}[] | undefined;
|
|
1981
2070
|
} | undefined;
|
|
1982
2071
|
}>;
|
|
2072
|
+
/**
|
|
2073
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.visibility&apiName=patch&version=v6 click to debug }
|
|
2074
|
+
*
|
|
2075
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=application&resource=application.visibility&version=v6 document }
|
|
2076
|
+
*/
|
|
2077
|
+
patch: (payload?: {
|
|
2078
|
+
data?: {
|
|
2079
|
+
add_visible_list?: {
|
|
2080
|
+
user_ids?: Array<string>;
|
|
2081
|
+
department_ids?: Array<string>;
|
|
2082
|
+
group_ids?: Array<string>;
|
|
2083
|
+
};
|
|
2084
|
+
del_visible_list?: {
|
|
2085
|
+
user_ids?: Array<string>;
|
|
2086
|
+
department_ids?: Array<string>;
|
|
2087
|
+
group_ids?: Array<string>;
|
|
2088
|
+
};
|
|
2089
|
+
add_invisible_list?: {
|
|
2090
|
+
user_ids?: Array<string>;
|
|
2091
|
+
department_ids?: Array<string>;
|
|
2092
|
+
group_ids?: Array<string>;
|
|
2093
|
+
};
|
|
2094
|
+
del_invisible_list?: {
|
|
2095
|
+
user_ids?: Array<string>;
|
|
2096
|
+
department_ids?: Array<string>;
|
|
2097
|
+
group_ids?: Array<string>;
|
|
2098
|
+
};
|
|
2099
|
+
is_visible_to_all?: boolean;
|
|
2100
|
+
};
|
|
2101
|
+
params?: {
|
|
2102
|
+
department_id_type?: "open_department_id" | "department_id";
|
|
2103
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
2104
|
+
};
|
|
2105
|
+
path: {
|
|
2106
|
+
app_id: string;
|
|
2107
|
+
};
|
|
2108
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
2109
|
+
code?: number | undefined;
|
|
2110
|
+
msg?: string | undefined;
|
|
2111
|
+
data?: {} | undefined;
|
|
2112
|
+
}>;
|
|
1983
2113
|
};
|
|
1984
2114
|
};
|
|
1985
2115
|
/**
|
|
@@ -2224,6 +2354,59 @@ declare abstract class Client$1 {
|
|
|
2224
2354
|
approval_code: string;
|
|
2225
2355
|
} | undefined;
|
|
2226
2356
|
}>;
|
|
2357
|
+
/**
|
|
2358
|
+
* {@link https://open.feishu.cn/api-explorer?project=approval&resource=external_approval&apiName=get&version=v4 click to debug }
|
|
2359
|
+
*
|
|
2360
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=approval&resource=external_approval&version=v4 document }
|
|
2361
|
+
*/
|
|
2362
|
+
get: (payload?: {
|
|
2363
|
+
params?: {
|
|
2364
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
2365
|
+
};
|
|
2366
|
+
path: {
|
|
2367
|
+
approval_code: string;
|
|
2368
|
+
};
|
|
2369
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
2370
|
+
code?: number | undefined;
|
|
2371
|
+
msg?: string | undefined;
|
|
2372
|
+
data?: {
|
|
2373
|
+
approval_name: string;
|
|
2374
|
+
approval_code: string;
|
|
2375
|
+
group_code: string;
|
|
2376
|
+
group_name?: string | undefined;
|
|
2377
|
+
description?: string | undefined;
|
|
2378
|
+
external?: {
|
|
2379
|
+
biz_name?: string | undefined;
|
|
2380
|
+
biz_type?: string | undefined;
|
|
2381
|
+
create_link_mobile?: string | undefined;
|
|
2382
|
+
create_link_pc?: string | undefined;
|
|
2383
|
+
support_pc?: boolean | undefined;
|
|
2384
|
+
support_mobile?: boolean | undefined;
|
|
2385
|
+
support_batch_read?: boolean | undefined;
|
|
2386
|
+
enable_mark_readed?: boolean | undefined;
|
|
2387
|
+
enable_quick_operate?: boolean | undefined;
|
|
2388
|
+
action_callback_url?: string | undefined;
|
|
2389
|
+
action_callback_token?: string | undefined;
|
|
2390
|
+
action_callback_key?: string | undefined;
|
|
2391
|
+
allow_batch_operate?: boolean | undefined;
|
|
2392
|
+
exclude_efficiency_statistics?: boolean | undefined;
|
|
2393
|
+
} | undefined;
|
|
2394
|
+
viewers?: {
|
|
2395
|
+
viewer_type?: "TENANT" | "DEPARTMENT" | "USER" | "NONE" | undefined;
|
|
2396
|
+
viewer_user_id?: string | undefined;
|
|
2397
|
+
viewer_department_id?: string | undefined;
|
|
2398
|
+
}[] | undefined;
|
|
2399
|
+
i18n_resources?: {
|
|
2400
|
+
locale: "zh-CN" | "en-US" | "ja-JP";
|
|
2401
|
+
texts: Array<{
|
|
2402
|
+
key: string;
|
|
2403
|
+
value: string;
|
|
2404
|
+
}>;
|
|
2405
|
+
is_default: boolean;
|
|
2406
|
+
}[] | undefined;
|
|
2407
|
+
managers?: string[] | undefined;
|
|
2408
|
+
} | undefined;
|
|
2409
|
+
}>;
|
|
2227
2410
|
};
|
|
2228
2411
|
/**
|
|
2229
2412
|
* 三方审批实例
|
|
@@ -3201,7 +3384,7 @@ declare abstract class Client$1 {
|
|
|
3201
3384
|
}>;
|
|
3202
3385
|
};
|
|
3203
3386
|
/**
|
|
3204
|
-
*
|
|
3387
|
+
* 原生审批任务
|
|
3205
3388
|
*/
|
|
3206
3389
|
task: {
|
|
3207
3390
|
/**
|
|
@@ -3668,6 +3851,8 @@ declare abstract class Client$1 {
|
|
|
3668
3851
|
name?: string;
|
|
3669
3852
|
}>;
|
|
3670
3853
|
member_ids?: Array<string>;
|
|
3854
|
+
custom_field_ID?: string;
|
|
3855
|
+
custom_field_obj_type?: string;
|
|
3671
3856
|
};
|
|
3672
3857
|
}>;
|
|
3673
3858
|
no_need_punch_members?: Array<{
|
|
@@ -3680,8 +3865,14 @@ declare abstract class Client$1 {
|
|
|
3680
3865
|
name?: string;
|
|
3681
3866
|
}>;
|
|
3682
3867
|
member_ids?: Array<string>;
|
|
3868
|
+
custom_field_ID?: string;
|
|
3869
|
+
custom_field_obj_type?: string;
|
|
3683
3870
|
};
|
|
3684
3871
|
}>;
|
|
3872
|
+
save_auto_changes?: boolean;
|
|
3873
|
+
org_change_auto_adjust?: boolean;
|
|
3874
|
+
bind_default_dept_ids?: Array<string>;
|
|
3875
|
+
bind_default_user_ids?: Array<string>;
|
|
3685
3876
|
};
|
|
3686
3877
|
operator_id?: string;
|
|
3687
3878
|
};
|
|
@@ -3811,6 +4002,8 @@ declare abstract class Client$1 {
|
|
|
3811
4002
|
name?: string | undefined;
|
|
3812
4003
|
}[] | undefined;
|
|
3813
4004
|
member_ids?: string[] | undefined;
|
|
4005
|
+
custom_field_ID?: string | undefined;
|
|
4006
|
+
custom_field_obj_type?: string | undefined;
|
|
3814
4007
|
} | undefined;
|
|
3815
4008
|
}[] | undefined;
|
|
3816
4009
|
no_need_punch_members?: {
|
|
@@ -3823,8 +4016,14 @@ declare abstract class Client$1 {
|
|
|
3823
4016
|
name?: string | undefined;
|
|
3824
4017
|
}[] | undefined;
|
|
3825
4018
|
member_ids?: string[] | undefined;
|
|
4019
|
+
custom_field_ID?: string | undefined;
|
|
4020
|
+
custom_field_obj_type?: string | undefined;
|
|
3826
4021
|
} | undefined;
|
|
3827
4022
|
}[] | undefined;
|
|
4023
|
+
save_auto_changes?: boolean | undefined;
|
|
4024
|
+
org_change_auto_adjust?: boolean | undefined;
|
|
4025
|
+
bind_default_dept_ids?: string[] | undefined;
|
|
4026
|
+
bind_default_user_ids?: string[] | undefined;
|
|
3828
4027
|
} | undefined;
|
|
3829
4028
|
} | undefined;
|
|
3830
4029
|
}>;
|
|
@@ -3983,6 +4182,8 @@ declare abstract class Client$1 {
|
|
|
3983
4182
|
name?: string | undefined;
|
|
3984
4183
|
}[] | undefined;
|
|
3985
4184
|
member_ids?: string[] | undefined;
|
|
4185
|
+
custom_field_ID?: string | undefined;
|
|
4186
|
+
custom_field_obj_type?: string | undefined;
|
|
3986
4187
|
} | undefined;
|
|
3987
4188
|
}[] | undefined;
|
|
3988
4189
|
no_need_punch_members?: {
|
|
@@ -3995,8 +4196,14 @@ declare abstract class Client$1 {
|
|
|
3995
4196
|
name?: string | undefined;
|
|
3996
4197
|
}[] | undefined;
|
|
3997
4198
|
member_ids?: string[] | undefined;
|
|
4199
|
+
custom_field_ID?: string | undefined;
|
|
4200
|
+
custom_field_obj_type?: string | undefined;
|
|
3998
4201
|
} | undefined;
|
|
3999
4202
|
}[] | undefined;
|
|
4203
|
+
save_auto_changes?: boolean | undefined;
|
|
4204
|
+
org_change_auto_adjust?: boolean | undefined;
|
|
4205
|
+
bind_default_dept_ids?: string[] | undefined;
|
|
4206
|
+
bind_default_user_ids?: string[] | undefined;
|
|
4000
4207
|
} | undefined;
|
|
4001
4208
|
}>;
|
|
4002
4209
|
listWithIterator: (payload?: {
|
|
@@ -4184,6 +4391,7 @@ declare abstract class Client$1 {
|
|
|
4184
4391
|
data: {
|
|
4185
4392
|
shift_name: string;
|
|
4186
4393
|
punch_times: number;
|
|
4394
|
+
sub_shift_leader_ids?: Array<string>;
|
|
4187
4395
|
is_flexible?: boolean;
|
|
4188
4396
|
flexible_minutes?: number;
|
|
4189
4397
|
flexible_rule?: Array<{
|
|
@@ -4214,6 +4422,7 @@ declare abstract class Client$1 {
|
|
|
4214
4422
|
on_overtime: string;
|
|
4215
4423
|
off_overtime: string;
|
|
4216
4424
|
}>;
|
|
4425
|
+
allow_punch_approval?: boolean;
|
|
4217
4426
|
};
|
|
4218
4427
|
}, options?: IRequestOptions$1) => Promise<{
|
|
4219
4428
|
code?: number | undefined;
|
|
@@ -4223,6 +4432,7 @@ declare abstract class Client$1 {
|
|
|
4223
4432
|
shift_id: string;
|
|
4224
4433
|
shift_name: string;
|
|
4225
4434
|
punch_times: number;
|
|
4435
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
4226
4436
|
is_flexible?: boolean | undefined;
|
|
4227
4437
|
flexible_minutes?: number | undefined;
|
|
4228
4438
|
flexible_rule?: {
|
|
@@ -4253,6 +4463,7 @@ declare abstract class Client$1 {
|
|
|
4253
4463
|
on_overtime: string;
|
|
4254
4464
|
off_overtime: string;
|
|
4255
4465
|
}[] | undefined;
|
|
4466
|
+
allow_punch_approval?: boolean | undefined;
|
|
4256
4467
|
} | undefined;
|
|
4257
4468
|
} | undefined;
|
|
4258
4469
|
}>;
|
|
@@ -4294,6 +4505,7 @@ declare abstract class Client$1 {
|
|
|
4294
4505
|
shift_id: string;
|
|
4295
4506
|
shift_name: string;
|
|
4296
4507
|
punch_times: number;
|
|
4508
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
4297
4509
|
is_flexible?: boolean | undefined;
|
|
4298
4510
|
flexible_minutes?: number | undefined;
|
|
4299
4511
|
flexible_rule?: {
|
|
@@ -4324,6 +4536,7 @@ declare abstract class Client$1 {
|
|
|
4324
4536
|
on_overtime: string;
|
|
4325
4537
|
off_overtime: string;
|
|
4326
4538
|
}[] | undefined;
|
|
4539
|
+
allow_punch_approval?: boolean | undefined;
|
|
4327
4540
|
} | undefined;
|
|
4328
4541
|
}>;
|
|
4329
4542
|
listWithIterator: (payload?: {
|
|
@@ -4337,6 +4550,7 @@ declare abstract class Client$1 {
|
|
|
4337
4550
|
shift_id: string;
|
|
4338
4551
|
shift_name: string;
|
|
4339
4552
|
punch_times: number;
|
|
4553
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
4340
4554
|
is_flexible?: boolean | undefined;
|
|
4341
4555
|
flexible_minutes?: number | undefined;
|
|
4342
4556
|
flexible_rule?: {
|
|
@@ -4367,6 +4581,7 @@ declare abstract class Client$1 {
|
|
|
4367
4581
|
on_overtime: string;
|
|
4368
4582
|
off_overtime: string;
|
|
4369
4583
|
}[] | undefined;
|
|
4584
|
+
allow_punch_approval?: boolean | undefined;
|
|
4370
4585
|
}[] | undefined;
|
|
4371
4586
|
} | null, void, unknown>;
|
|
4372
4587
|
}>;
|
|
@@ -4392,6 +4607,7 @@ declare abstract class Client$1 {
|
|
|
4392
4607
|
shift_id: string;
|
|
4393
4608
|
shift_name: string;
|
|
4394
4609
|
punch_times: number;
|
|
4610
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
4395
4611
|
is_flexible?: boolean | undefined;
|
|
4396
4612
|
flexible_minutes?: number | undefined;
|
|
4397
4613
|
flexible_rule?: {
|
|
@@ -4422,6 +4638,7 @@ declare abstract class Client$1 {
|
|
|
4422
4638
|
on_overtime: string;
|
|
4423
4639
|
off_overtime: string;
|
|
4424
4640
|
}[] | undefined;
|
|
4641
|
+
allow_punch_approval?: boolean | undefined;
|
|
4425
4642
|
}[] | undefined;
|
|
4426
4643
|
page_token?: string | undefined;
|
|
4427
4644
|
has_more?: boolean | undefined;
|
|
@@ -4447,6 +4664,7 @@ declare abstract class Client$1 {
|
|
|
4447
4664
|
shift_id: string;
|
|
4448
4665
|
shift_name: string;
|
|
4449
4666
|
punch_times: number;
|
|
4667
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
4450
4668
|
is_flexible?: boolean | undefined;
|
|
4451
4669
|
flexible_minutes?: number | undefined;
|
|
4452
4670
|
flexible_rule?: {
|
|
@@ -4477,6 +4695,7 @@ declare abstract class Client$1 {
|
|
|
4477
4695
|
on_overtime: string;
|
|
4478
4696
|
off_overtime: string;
|
|
4479
4697
|
}[] | undefined;
|
|
4698
|
+
allow_punch_approval?: boolean | undefined;
|
|
4480
4699
|
} | undefined;
|
|
4481
4700
|
}>;
|
|
4482
4701
|
};
|
|
@@ -5525,6 +5744,86 @@ declare abstract class Client$1 {
|
|
|
5525
5744
|
} | undefined;
|
|
5526
5745
|
}>;
|
|
5527
5746
|
};
|
|
5747
|
+
/**
|
|
5748
|
+
* authorize
|
|
5749
|
+
*/
|
|
5750
|
+
authorize: {
|
|
5751
|
+
/**
|
|
5752
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=authorize&apiName=get&version=v1 click to debug }
|
|
5753
|
+
*
|
|
5754
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=authen&resource=authorize&version=v1 document }
|
|
5755
|
+
*/
|
|
5756
|
+
get: (payload?: {
|
|
5757
|
+
params: {
|
|
5758
|
+
app_id: string;
|
|
5759
|
+
redirect_uri: string;
|
|
5760
|
+
scope?: string;
|
|
5761
|
+
state?: string;
|
|
5762
|
+
};
|
|
5763
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5764
|
+
code?: number | undefined;
|
|
5765
|
+
msg?: string | undefined;
|
|
5766
|
+
data?: {
|
|
5767
|
+
redirect_uri?: string | undefined;
|
|
5768
|
+
code?: string | undefined;
|
|
5769
|
+
state?: string | undefined;
|
|
5770
|
+
} | undefined;
|
|
5771
|
+
}>;
|
|
5772
|
+
};
|
|
5773
|
+
/**
|
|
5774
|
+
* oidc.access_token
|
|
5775
|
+
*/
|
|
5776
|
+
oidcAccessToken: {
|
|
5777
|
+
/**
|
|
5778
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=oidc.access_token&apiName=create&version=v1 click to debug }
|
|
5779
|
+
*
|
|
5780
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=authen&resource=oidc.access_token&version=v1 document }
|
|
5781
|
+
*/
|
|
5782
|
+
create: (payload?: {
|
|
5783
|
+
data: {
|
|
5784
|
+
grant_type: string;
|
|
5785
|
+
code: string;
|
|
5786
|
+
};
|
|
5787
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5788
|
+
code?: number | undefined;
|
|
5789
|
+
msg?: string | undefined;
|
|
5790
|
+
data?: {
|
|
5791
|
+
access_token: string;
|
|
5792
|
+
refresh_token?: string | undefined;
|
|
5793
|
+
token_type: string;
|
|
5794
|
+
expires_in?: number | undefined;
|
|
5795
|
+
refresh_expires_in?: number | undefined;
|
|
5796
|
+
scope?: string | undefined;
|
|
5797
|
+
} | undefined;
|
|
5798
|
+
}>;
|
|
5799
|
+
};
|
|
5800
|
+
/**
|
|
5801
|
+
* oidc.refresh_access_token
|
|
5802
|
+
*/
|
|
5803
|
+
oidcRefreshAccessToken: {
|
|
5804
|
+
/**
|
|
5805
|
+
* {@link https://open.feishu.cn/api-explorer?project=authen&resource=oidc.refresh_access_token&apiName=create&version=v1 click to debug }
|
|
5806
|
+
*
|
|
5807
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=create&project=authen&resource=oidc.refresh_access_token&version=v1 document }
|
|
5808
|
+
*/
|
|
5809
|
+
create: (payload?: {
|
|
5810
|
+
data: {
|
|
5811
|
+
grant_type: string;
|
|
5812
|
+
refresh_token: string;
|
|
5813
|
+
};
|
|
5814
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5815
|
+
code?: number | undefined;
|
|
5816
|
+
msg?: string | undefined;
|
|
5817
|
+
data?: {
|
|
5818
|
+
access_token: string;
|
|
5819
|
+
refresh_token?: string | undefined;
|
|
5820
|
+
token_type: string;
|
|
5821
|
+
expires_in?: number | undefined;
|
|
5822
|
+
refresh_expires_in?: number | undefined;
|
|
5823
|
+
scope?: string | undefined;
|
|
5824
|
+
} | undefined;
|
|
5825
|
+
}>;
|
|
5826
|
+
};
|
|
5528
5827
|
/**
|
|
5529
5828
|
* refresh_access_token
|
|
5530
5829
|
*/
|
|
@@ -6900,6 +7199,7 @@ declare abstract class Client$1 {
|
|
|
6900
7199
|
name?: string;
|
|
6901
7200
|
folder_token?: string;
|
|
6902
7201
|
without_content?: boolean;
|
|
7202
|
+
time_zone?: string;
|
|
6903
7203
|
};
|
|
6904
7204
|
path: {
|
|
6905
7205
|
app_token: string;
|
|
@@ -6914,6 +7214,8 @@ declare abstract class Client$1 {
|
|
|
6914
7214
|
revision?: number | undefined;
|
|
6915
7215
|
folder_token?: string | undefined;
|
|
6916
7216
|
url?: string | undefined;
|
|
7217
|
+
default_table_id?: string | undefined;
|
|
7218
|
+
time_zone?: string | undefined;
|
|
6917
7219
|
} | undefined;
|
|
6918
7220
|
} | undefined;
|
|
6919
7221
|
}>;
|
|
@@ -6926,6 +7228,7 @@ declare abstract class Client$1 {
|
|
|
6926
7228
|
data?: {
|
|
6927
7229
|
name?: string;
|
|
6928
7230
|
folder_token?: string;
|
|
7231
|
+
time_zone?: string;
|
|
6929
7232
|
};
|
|
6930
7233
|
params?: {
|
|
6931
7234
|
customized_config?: boolean;
|
|
@@ -6943,6 +7246,8 @@ declare abstract class Client$1 {
|
|
|
6943
7246
|
revision?: number | undefined;
|
|
6944
7247
|
folder_token?: string | undefined;
|
|
6945
7248
|
url?: string | undefined;
|
|
7249
|
+
default_table_id?: string | undefined;
|
|
7250
|
+
time_zone?: string | undefined;
|
|
6946
7251
|
} | undefined;
|
|
6947
7252
|
} | undefined;
|
|
6948
7253
|
}>;
|
|
@@ -6970,6 +7275,7 @@ declare abstract class Client$1 {
|
|
|
6970
7275
|
name?: string | undefined;
|
|
6971
7276
|
revision?: number | undefined;
|
|
6972
7277
|
is_advanced?: boolean | undefined;
|
|
7278
|
+
time_zone?: string | undefined;
|
|
6973
7279
|
} | undefined;
|
|
6974
7280
|
} | undefined;
|
|
6975
7281
|
}>;
|
|
@@ -7002,6 +7308,7 @@ declare abstract class Client$1 {
|
|
|
7002
7308
|
app_token?: string | undefined;
|
|
7003
7309
|
name?: string | undefined;
|
|
7004
7310
|
is_advanced?: boolean | undefined;
|
|
7311
|
+
time_zone?: string | undefined;
|
|
7005
7312
|
} | undefined;
|
|
7006
7313
|
} | undefined;
|
|
7007
7314
|
}>;
|
|
@@ -7095,9 +7402,9 @@ declare abstract class Client$1 {
|
|
|
7095
7402
|
data: {
|
|
7096
7403
|
role_name: string;
|
|
7097
7404
|
table_roles: Array<{
|
|
7405
|
+
table_perm: number;
|
|
7098
7406
|
table_name?: string;
|
|
7099
7407
|
table_id?: string;
|
|
7100
|
-
table_perm: number;
|
|
7101
7408
|
rec_rule?: {
|
|
7102
7409
|
conditions: Array<{
|
|
7103
7410
|
field_name: string;
|
|
@@ -7107,7 +7414,7 @@ declare abstract class Client$1 {
|
|
|
7107
7414
|
conjunction?: "and" | "or";
|
|
7108
7415
|
other_perm?: number;
|
|
7109
7416
|
};
|
|
7110
|
-
field_perm?:
|
|
7417
|
+
field_perm?: Record<string, number>;
|
|
7111
7418
|
allow_add_record?: boolean;
|
|
7112
7419
|
allow_delete_record?: boolean;
|
|
7113
7420
|
}>;
|
|
@@ -7127,9 +7434,9 @@ declare abstract class Client$1 {
|
|
|
7127
7434
|
role_name: string;
|
|
7128
7435
|
role_id?: string | undefined;
|
|
7129
7436
|
table_roles: Array<{
|
|
7437
|
+
table_perm: number;
|
|
7130
7438
|
table_name?: string;
|
|
7131
7439
|
table_id?: string;
|
|
7132
|
-
table_perm: number;
|
|
7133
7440
|
rec_rule?: {
|
|
7134
7441
|
conditions: Array<{
|
|
7135
7442
|
field_name: string;
|
|
@@ -7140,7 +7447,7 @@ declare abstract class Client$1 {
|
|
|
7140
7447
|
conjunction?: "and" | "or";
|
|
7141
7448
|
other_perm?: number;
|
|
7142
7449
|
};
|
|
7143
|
-
field_perm?:
|
|
7450
|
+
field_perm?: Record<string, number>;
|
|
7144
7451
|
allow_add_record?: boolean;
|
|
7145
7452
|
allow_delete_record?: boolean;
|
|
7146
7453
|
}>;
|
|
@@ -7185,9 +7492,9 @@ declare abstract class Client$1 {
|
|
|
7185
7492
|
role_name: string;
|
|
7186
7493
|
role_id?: string | undefined;
|
|
7187
7494
|
table_roles: Array<{
|
|
7495
|
+
table_perm: number;
|
|
7188
7496
|
table_name?: string;
|
|
7189
7497
|
table_id?: string;
|
|
7190
|
-
table_perm: number;
|
|
7191
7498
|
rec_rule?: {
|
|
7192
7499
|
conditions: Array<{
|
|
7193
7500
|
field_name: string;
|
|
@@ -7198,7 +7505,7 @@ declare abstract class Client$1 {
|
|
|
7198
7505
|
conjunction?: "and" | "or";
|
|
7199
7506
|
other_perm?: number;
|
|
7200
7507
|
};
|
|
7201
|
-
field_perm?:
|
|
7508
|
+
field_perm?: Record<string, number>;
|
|
7202
7509
|
allow_add_record?: boolean;
|
|
7203
7510
|
allow_delete_record?: boolean;
|
|
7204
7511
|
}>;
|
|
@@ -7236,9 +7543,9 @@ declare abstract class Client$1 {
|
|
|
7236
7543
|
role_name: string;
|
|
7237
7544
|
role_id?: string | undefined;
|
|
7238
7545
|
table_roles: Array<{
|
|
7546
|
+
table_perm: number;
|
|
7239
7547
|
table_name?: string;
|
|
7240
7548
|
table_id?: string;
|
|
7241
|
-
table_perm: number;
|
|
7242
7549
|
rec_rule?: {
|
|
7243
7550
|
conditions: Array<{
|
|
7244
7551
|
field_name: string;
|
|
@@ -7249,7 +7556,7 @@ declare abstract class Client$1 {
|
|
|
7249
7556
|
conjunction?: "and" | "or";
|
|
7250
7557
|
other_perm?: number;
|
|
7251
7558
|
};
|
|
7252
|
-
field_perm?:
|
|
7559
|
+
field_perm?: Record<string, number>;
|
|
7253
7560
|
allow_add_record?: boolean;
|
|
7254
7561
|
allow_delete_record?: boolean;
|
|
7255
7562
|
}>;
|
|
@@ -7279,9 +7586,9 @@ declare abstract class Client$1 {
|
|
|
7279
7586
|
data: {
|
|
7280
7587
|
role_name: string;
|
|
7281
7588
|
table_roles: Array<{
|
|
7589
|
+
table_perm: number;
|
|
7282
7590
|
table_name?: string;
|
|
7283
7591
|
table_id?: string;
|
|
7284
|
-
table_perm: number;
|
|
7285
7592
|
rec_rule?: {
|
|
7286
7593
|
conditions: Array<{
|
|
7287
7594
|
field_name: string;
|
|
@@ -7291,7 +7598,7 @@ declare abstract class Client$1 {
|
|
|
7291
7598
|
conjunction?: "and" | "or";
|
|
7292
7599
|
other_perm?: number;
|
|
7293
7600
|
};
|
|
7294
|
-
field_perm?:
|
|
7601
|
+
field_perm?: Record<string, number>;
|
|
7295
7602
|
allow_add_record?: boolean;
|
|
7296
7603
|
allow_delete_record?: boolean;
|
|
7297
7604
|
}>;
|
|
@@ -7312,9 +7619,9 @@ declare abstract class Client$1 {
|
|
|
7312
7619
|
role_name: string;
|
|
7313
7620
|
role_id?: string | undefined;
|
|
7314
7621
|
table_roles: Array<{
|
|
7622
|
+
table_perm: number;
|
|
7315
7623
|
table_name?: string;
|
|
7316
7624
|
table_id?: string;
|
|
7317
|
-
table_perm: number;
|
|
7318
7625
|
rec_rule?: {
|
|
7319
7626
|
conditions: Array<{
|
|
7320
7627
|
field_name: string;
|
|
@@ -7325,7 +7632,7 @@ declare abstract class Client$1 {
|
|
|
7325
7632
|
conjunction?: "and" | "or";
|
|
7326
7633
|
other_perm?: number;
|
|
7327
7634
|
};
|
|
7328
|
-
field_perm?:
|
|
7635
|
+
field_perm?: Record<string, number>;
|
|
7329
7636
|
allow_add_record?: boolean;
|
|
7330
7637
|
allow_delete_record?: boolean;
|
|
7331
7638
|
}>;
|
|
@@ -7527,6 +7834,7 @@ declare abstract class Client$1 {
|
|
|
7527
7834
|
fields?: {
|
|
7528
7835
|
field_name: string;
|
|
7529
7836
|
type: number;
|
|
7837
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7530
7838
|
property?: {
|
|
7531
7839
|
options?: {
|
|
7532
7840
|
name?: string | undefined;
|
|
@@ -7625,6 +7933,7 @@ declare abstract class Client$1 {
|
|
|
7625
7933
|
fields?: {
|
|
7626
7934
|
field_name: string;
|
|
7627
7935
|
type: number;
|
|
7936
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7628
7937
|
property?: {
|
|
7629
7938
|
options?: {
|
|
7630
7939
|
name?: string | undefined;
|
|
@@ -7832,7 +8141,7 @@ declare abstract class Client$1 {
|
|
|
7832
8141
|
disable_sync?: boolean | undefined;
|
|
7833
8142
|
text?: string | undefined;
|
|
7834
8143
|
} | undefined;
|
|
7835
|
-
ui_type?:
|
|
8144
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7836
8145
|
};
|
|
7837
8146
|
params?: {
|
|
7838
8147
|
client_token?: string | undefined;
|
|
@@ -7846,7 +8155,6 @@ declare abstract class Client$1 {
|
|
|
7846
8155
|
msg?: string | undefined;
|
|
7847
8156
|
data?: {
|
|
7848
8157
|
field?: {
|
|
7849
|
-
field_id?: string | undefined;
|
|
7850
8158
|
field_name: string;
|
|
7851
8159
|
type: number;
|
|
7852
8160
|
property?: {
|
|
@@ -7890,7 +8198,8 @@ declare abstract class Client$1 {
|
|
|
7890
8198
|
text?: string | undefined;
|
|
7891
8199
|
} | undefined;
|
|
7892
8200
|
is_primary?: boolean | undefined;
|
|
7893
|
-
|
|
8201
|
+
field_id?: string | undefined;
|
|
8202
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7894
8203
|
is_hidden?: boolean | undefined;
|
|
7895
8204
|
} | undefined;
|
|
7896
8205
|
} | undefined;
|
|
@@ -7935,7 +8244,6 @@ declare abstract class Client$1 {
|
|
|
7935
8244
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
7936
8245
|
total?: number | undefined;
|
|
7937
8246
|
items?: {
|
|
7938
|
-
field_id?: string | undefined;
|
|
7939
8247
|
field_name: string;
|
|
7940
8248
|
type: number;
|
|
7941
8249
|
property?: {
|
|
@@ -7974,12 +8282,10 @@ declare abstract class Client$1 {
|
|
|
7974
8282
|
symbol?: string | undefined;
|
|
7975
8283
|
} | undefined;
|
|
7976
8284
|
} | undefined;
|
|
7977
|
-
description?:
|
|
7978
|
-
disable_sync?: boolean | undefined;
|
|
7979
|
-
text?: string | undefined;
|
|
7980
|
-
} | undefined;
|
|
8285
|
+
description?: string | undefined;
|
|
7981
8286
|
is_primary?: boolean | undefined;
|
|
7982
|
-
|
|
8287
|
+
field_id?: string | undefined;
|
|
8288
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
7983
8289
|
is_hidden?: boolean | undefined;
|
|
7984
8290
|
}[] | undefined;
|
|
7985
8291
|
} | null, void, unknown>;
|
|
@@ -8014,7 +8320,6 @@ declare abstract class Client$1 {
|
|
|
8014
8320
|
page_token?: string | undefined;
|
|
8015
8321
|
total?: number | undefined;
|
|
8016
8322
|
items?: {
|
|
8017
|
-
field_id?: string | undefined;
|
|
8018
8323
|
field_name: string;
|
|
8019
8324
|
type: number;
|
|
8020
8325
|
property?: {
|
|
@@ -8053,12 +8358,10 @@ declare abstract class Client$1 {
|
|
|
8053
8358
|
symbol?: string | undefined;
|
|
8054
8359
|
} | undefined;
|
|
8055
8360
|
} | undefined;
|
|
8056
|
-
description?:
|
|
8057
|
-
disable_sync?: boolean | undefined;
|
|
8058
|
-
text?: string | undefined;
|
|
8059
|
-
} | undefined;
|
|
8361
|
+
description?: string | undefined;
|
|
8060
8362
|
is_primary?: boolean | undefined;
|
|
8061
|
-
|
|
8363
|
+
field_id?: string | undefined;
|
|
8364
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
8062
8365
|
is_hidden?: boolean | undefined;
|
|
8063
8366
|
}[] | undefined;
|
|
8064
8367
|
} | undefined;
|
|
@@ -8118,7 +8421,7 @@ declare abstract class Client$1 {
|
|
|
8118
8421
|
disable_sync?: boolean | undefined;
|
|
8119
8422
|
text?: string | undefined;
|
|
8120
8423
|
} | undefined;
|
|
8121
|
-
ui_type?:
|
|
8424
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
8122
8425
|
};
|
|
8123
8426
|
path: {
|
|
8124
8427
|
app_token: string;
|
|
@@ -8130,7 +8433,6 @@ declare abstract class Client$1 {
|
|
|
8130
8433
|
msg?: string | undefined;
|
|
8131
8434
|
data?: {
|
|
8132
8435
|
field?: {
|
|
8133
|
-
field_id?: string | undefined;
|
|
8134
8436
|
field_name: string;
|
|
8135
8437
|
type: number;
|
|
8136
8438
|
property?: {
|
|
@@ -8174,7 +8476,8 @@ declare abstract class Client$1 {
|
|
|
8174
8476
|
text?: string | undefined;
|
|
8175
8477
|
} | undefined;
|
|
8176
8478
|
is_primary?: boolean | undefined;
|
|
8177
|
-
|
|
8479
|
+
field_id?: string | undefined;
|
|
8480
|
+
ui_type?: "Text" | "Barcode" | "Number" | "Progress" | "Currency" | "Rating" | "SingleSelect" | "MultiSelect" | "DateTime" | "Checkbox" | "User" | "GroupChat" | "Phone" | "Url" | "Attachment" | "SingleLink" | "Formula" | "DuplexLink" | "Location" | "CreatedTime" | "ModifiedTime" | "CreatedUser" | "ModifiedUser" | "AutoNumber" | undefined;
|
|
8178
8481
|
is_hidden?: boolean | undefined;
|
|
8179
8482
|
} | undefined;
|
|
8180
8483
|
} | undefined;
|
|
@@ -8365,22 +8668,6 @@ declare abstract class Client$1 {
|
|
|
8365
8668
|
batchCreate: (payload?: {
|
|
8366
8669
|
data: {
|
|
8367
8670
|
records: Array<{
|
|
8368
|
-
created_by?: {
|
|
8369
|
-
id?: string;
|
|
8370
|
-
name?: string;
|
|
8371
|
-
en_name?: string;
|
|
8372
|
-
email?: string;
|
|
8373
|
-
avatar_url?: string;
|
|
8374
|
-
};
|
|
8375
|
-
created_time?: number;
|
|
8376
|
-
last_modified_by?: {
|
|
8377
|
-
id?: string;
|
|
8378
|
-
name?: string;
|
|
8379
|
-
en_name?: string;
|
|
8380
|
-
email?: string;
|
|
8381
|
-
avatar_url?: string;
|
|
8382
|
-
};
|
|
8383
|
-
last_modified_time?: number;
|
|
8384
8671
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8385
8672
|
text?: string;
|
|
8386
8673
|
link?: string;
|
|
@@ -8410,6 +8697,22 @@ declare abstract class Client$1 {
|
|
|
8410
8697
|
url?: string;
|
|
8411
8698
|
tmp_url?: string;
|
|
8412
8699
|
}>>;
|
|
8700
|
+
created_by?: {
|
|
8701
|
+
id?: string;
|
|
8702
|
+
name?: string;
|
|
8703
|
+
en_name?: string;
|
|
8704
|
+
email?: string;
|
|
8705
|
+
avatar_url?: string;
|
|
8706
|
+
};
|
|
8707
|
+
created_time?: number;
|
|
8708
|
+
last_modified_by?: {
|
|
8709
|
+
id?: string;
|
|
8710
|
+
name?: string;
|
|
8711
|
+
en_name?: string;
|
|
8712
|
+
email?: string;
|
|
8713
|
+
avatar_url?: string;
|
|
8714
|
+
};
|
|
8715
|
+
last_modified_time?: number;
|
|
8413
8716
|
}>;
|
|
8414
8717
|
};
|
|
8415
8718
|
params?: {
|
|
@@ -8425,23 +8728,6 @@ declare abstract class Client$1 {
|
|
|
8425
8728
|
msg?: string | undefined;
|
|
8426
8729
|
data?: {
|
|
8427
8730
|
records?: {
|
|
8428
|
-
record_id?: string | undefined;
|
|
8429
|
-
created_by?: {
|
|
8430
|
-
id?: string | undefined;
|
|
8431
|
-
name?: string | undefined;
|
|
8432
|
-
en_name?: string | undefined;
|
|
8433
|
-
email?: string | undefined;
|
|
8434
|
-
avatar_url?: string | undefined;
|
|
8435
|
-
} | undefined;
|
|
8436
|
-
created_time?: number | undefined;
|
|
8437
|
-
last_modified_by?: {
|
|
8438
|
-
id?: string | undefined;
|
|
8439
|
-
name?: string | undefined;
|
|
8440
|
-
en_name?: string | undefined;
|
|
8441
|
-
email?: string | undefined;
|
|
8442
|
-
avatar_url?: string | undefined;
|
|
8443
|
-
} | undefined;
|
|
8444
|
-
last_modified_time?: number | undefined;
|
|
8445
8731
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8446
8732
|
text?: string;
|
|
8447
8733
|
link?: string;
|
|
@@ -8471,6 +8757,23 @@ declare abstract class Client$1 {
|
|
|
8471
8757
|
url?: string;
|
|
8472
8758
|
tmp_url?: string;
|
|
8473
8759
|
}>>;
|
|
8760
|
+
record_id?: string | undefined;
|
|
8761
|
+
created_by?: {
|
|
8762
|
+
id?: string | undefined;
|
|
8763
|
+
name?: string | undefined;
|
|
8764
|
+
en_name?: string | undefined;
|
|
8765
|
+
email?: string | undefined;
|
|
8766
|
+
avatar_url?: string | undefined;
|
|
8767
|
+
} | undefined;
|
|
8768
|
+
created_time?: number | undefined;
|
|
8769
|
+
last_modified_by?: {
|
|
8770
|
+
id?: string | undefined;
|
|
8771
|
+
name?: string | undefined;
|
|
8772
|
+
en_name?: string | undefined;
|
|
8773
|
+
email?: string | undefined;
|
|
8774
|
+
avatar_url?: string | undefined;
|
|
8775
|
+
} | undefined;
|
|
8776
|
+
last_modified_time?: number | undefined;
|
|
8474
8777
|
}[] | undefined;
|
|
8475
8778
|
} | undefined;
|
|
8476
8779
|
}>;
|
|
@@ -8517,23 +8820,6 @@ declare abstract class Client$1 {
|
|
|
8517
8820
|
batchUpdate: (payload?: {
|
|
8518
8821
|
data: {
|
|
8519
8822
|
records: Array<{
|
|
8520
|
-
record_id?: string;
|
|
8521
|
-
created_by?: {
|
|
8522
|
-
id?: string;
|
|
8523
|
-
name?: string;
|
|
8524
|
-
en_name?: string;
|
|
8525
|
-
email?: string;
|
|
8526
|
-
avatar_url?: string;
|
|
8527
|
-
};
|
|
8528
|
-
created_time?: number;
|
|
8529
|
-
last_modified_by?: {
|
|
8530
|
-
id?: string;
|
|
8531
|
-
name?: string;
|
|
8532
|
-
en_name?: string;
|
|
8533
|
-
email?: string;
|
|
8534
|
-
avatar_url?: string;
|
|
8535
|
-
};
|
|
8536
|
-
last_modified_time?: number;
|
|
8537
8823
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8538
8824
|
text?: string;
|
|
8539
8825
|
link?: string;
|
|
@@ -8563,6 +8849,23 @@ declare abstract class Client$1 {
|
|
|
8563
8849
|
url?: string;
|
|
8564
8850
|
tmp_url?: string;
|
|
8565
8851
|
}>>;
|
|
8852
|
+
record_id?: string;
|
|
8853
|
+
created_by?: {
|
|
8854
|
+
id?: string;
|
|
8855
|
+
name?: string;
|
|
8856
|
+
en_name?: string;
|
|
8857
|
+
email?: string;
|
|
8858
|
+
avatar_url?: string;
|
|
8859
|
+
};
|
|
8860
|
+
created_time?: number;
|
|
8861
|
+
last_modified_by?: {
|
|
8862
|
+
id?: string;
|
|
8863
|
+
name?: string;
|
|
8864
|
+
en_name?: string;
|
|
8865
|
+
email?: string;
|
|
8866
|
+
avatar_url?: string;
|
|
8867
|
+
};
|
|
8868
|
+
last_modified_time?: number;
|
|
8566
8869
|
}>;
|
|
8567
8870
|
};
|
|
8568
8871
|
params?: {
|
|
@@ -8577,23 +8880,6 @@ declare abstract class Client$1 {
|
|
|
8577
8880
|
msg?: string | undefined;
|
|
8578
8881
|
data?: {
|
|
8579
8882
|
records?: {
|
|
8580
|
-
record_id?: string | undefined;
|
|
8581
|
-
created_by?: {
|
|
8582
|
-
id?: string | undefined;
|
|
8583
|
-
name?: string | undefined;
|
|
8584
|
-
en_name?: string | undefined;
|
|
8585
|
-
email?: string | undefined;
|
|
8586
|
-
avatar_url?: string | undefined;
|
|
8587
|
-
} | undefined;
|
|
8588
|
-
created_time?: number | undefined;
|
|
8589
|
-
last_modified_by?: {
|
|
8590
|
-
id?: string | undefined;
|
|
8591
|
-
name?: string | undefined;
|
|
8592
|
-
en_name?: string | undefined;
|
|
8593
|
-
email?: string | undefined;
|
|
8594
|
-
avatar_url?: string | undefined;
|
|
8595
|
-
} | undefined;
|
|
8596
|
-
last_modified_time?: number | undefined;
|
|
8597
8883
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8598
8884
|
text?: string;
|
|
8599
8885
|
link?: string;
|
|
@@ -8623,6 +8909,23 @@ declare abstract class Client$1 {
|
|
|
8623
8909
|
url?: string;
|
|
8624
8910
|
tmp_url?: string;
|
|
8625
8911
|
}>>;
|
|
8912
|
+
record_id?: string | undefined;
|
|
8913
|
+
created_by?: {
|
|
8914
|
+
id?: string | undefined;
|
|
8915
|
+
name?: string | undefined;
|
|
8916
|
+
en_name?: string | undefined;
|
|
8917
|
+
email?: string | undefined;
|
|
8918
|
+
avatar_url?: string | undefined;
|
|
8919
|
+
} | undefined;
|
|
8920
|
+
created_time?: number | undefined;
|
|
8921
|
+
last_modified_by?: {
|
|
8922
|
+
id?: string | undefined;
|
|
8923
|
+
name?: string | undefined;
|
|
8924
|
+
en_name?: string | undefined;
|
|
8925
|
+
email?: string | undefined;
|
|
8926
|
+
avatar_url?: string | undefined;
|
|
8927
|
+
} | undefined;
|
|
8928
|
+
last_modified_time?: number | undefined;
|
|
8626
8929
|
}[] | undefined;
|
|
8627
8930
|
} | undefined;
|
|
8628
8931
|
}>;
|
|
@@ -8681,23 +8984,6 @@ declare abstract class Client$1 {
|
|
|
8681
8984
|
msg?: string | undefined;
|
|
8682
8985
|
data?: {
|
|
8683
8986
|
record?: {
|
|
8684
|
-
record_id?: string | undefined;
|
|
8685
|
-
created_by?: {
|
|
8686
|
-
id?: string | undefined;
|
|
8687
|
-
name?: string | undefined;
|
|
8688
|
-
en_name?: string | undefined;
|
|
8689
|
-
email?: string | undefined;
|
|
8690
|
-
avatar_url?: string | undefined;
|
|
8691
|
-
} | undefined;
|
|
8692
|
-
created_time?: number | undefined;
|
|
8693
|
-
last_modified_by?: {
|
|
8694
|
-
id?: string | undefined;
|
|
8695
|
-
name?: string | undefined;
|
|
8696
|
-
en_name?: string | undefined;
|
|
8697
|
-
email?: string | undefined;
|
|
8698
|
-
avatar_url?: string | undefined;
|
|
8699
|
-
} | undefined;
|
|
8700
|
-
last_modified_time?: number | undefined;
|
|
8701
8987
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8702
8988
|
text?: string;
|
|
8703
8989
|
link?: string;
|
|
@@ -8727,6 +9013,23 @@ declare abstract class Client$1 {
|
|
|
8727
9013
|
url?: string;
|
|
8728
9014
|
tmp_url?: string;
|
|
8729
9015
|
}>>;
|
|
9016
|
+
record_id?: string | undefined;
|
|
9017
|
+
created_by?: {
|
|
9018
|
+
id?: string | undefined;
|
|
9019
|
+
name?: string | undefined;
|
|
9020
|
+
en_name?: string | undefined;
|
|
9021
|
+
email?: string | undefined;
|
|
9022
|
+
avatar_url?: string | undefined;
|
|
9023
|
+
} | undefined;
|
|
9024
|
+
created_time?: number | undefined;
|
|
9025
|
+
last_modified_by?: {
|
|
9026
|
+
id?: string | undefined;
|
|
9027
|
+
name?: string | undefined;
|
|
9028
|
+
en_name?: string | undefined;
|
|
9029
|
+
email?: string | undefined;
|
|
9030
|
+
avatar_url?: string | undefined;
|
|
9031
|
+
} | undefined;
|
|
9032
|
+
last_modified_time?: number | undefined;
|
|
8730
9033
|
} | undefined;
|
|
8731
9034
|
} | undefined;
|
|
8732
9035
|
}>;
|
|
@@ -8771,6 +9074,7 @@ declare abstract class Client$1 {
|
|
|
8771
9074
|
text_field_as_array?: boolean;
|
|
8772
9075
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
8773
9076
|
display_formula_ref?: boolean;
|
|
9077
|
+
with_shared_url?: boolean;
|
|
8774
9078
|
automatic_fields?: boolean;
|
|
8775
9079
|
};
|
|
8776
9080
|
path: {
|
|
@@ -8783,23 +9087,6 @@ declare abstract class Client$1 {
|
|
|
8783
9087
|
msg?: string | undefined;
|
|
8784
9088
|
data?: {
|
|
8785
9089
|
record?: {
|
|
8786
|
-
record_id?: string | undefined;
|
|
8787
|
-
created_by?: {
|
|
8788
|
-
id?: string | undefined;
|
|
8789
|
-
name?: string | undefined;
|
|
8790
|
-
en_name?: string | undefined;
|
|
8791
|
-
email?: string | undefined;
|
|
8792
|
-
avatar_url?: string | undefined;
|
|
8793
|
-
} | undefined;
|
|
8794
|
-
created_time?: number | undefined;
|
|
8795
|
-
last_modified_by?: {
|
|
8796
|
-
id?: string | undefined;
|
|
8797
|
-
name?: string | undefined;
|
|
8798
|
-
en_name?: string | undefined;
|
|
8799
|
-
email?: string | undefined;
|
|
8800
|
-
avatar_url?: string | undefined;
|
|
8801
|
-
} | undefined;
|
|
8802
|
-
last_modified_time?: number | undefined;
|
|
8803
9090
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8804
9091
|
text?: string;
|
|
8805
9092
|
link?: string;
|
|
@@ -8829,6 +9116,23 @@ declare abstract class Client$1 {
|
|
|
8829
9116
|
url?: string;
|
|
8830
9117
|
tmp_url?: string;
|
|
8831
9118
|
}>>;
|
|
9119
|
+
record_id?: string | undefined;
|
|
9120
|
+
created_by?: {
|
|
9121
|
+
id?: string | undefined;
|
|
9122
|
+
name?: string | undefined;
|
|
9123
|
+
en_name?: string | undefined;
|
|
9124
|
+
email?: string | undefined;
|
|
9125
|
+
avatar_url?: string | undefined;
|
|
9126
|
+
} | undefined;
|
|
9127
|
+
created_time?: number | undefined;
|
|
9128
|
+
last_modified_by?: {
|
|
9129
|
+
id?: string | undefined;
|
|
9130
|
+
name?: string | undefined;
|
|
9131
|
+
en_name?: string | undefined;
|
|
9132
|
+
email?: string | undefined;
|
|
9133
|
+
avatar_url?: string | undefined;
|
|
9134
|
+
} | undefined;
|
|
9135
|
+
last_modified_time?: number | undefined;
|
|
8832
9136
|
} | undefined;
|
|
8833
9137
|
} | undefined;
|
|
8834
9138
|
}>;
|
|
@@ -8853,23 +9157,6 @@ declare abstract class Client$1 {
|
|
|
8853
9157
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
8854
9158
|
total?: number | undefined;
|
|
8855
9159
|
items?: {
|
|
8856
|
-
record_id?: string | undefined;
|
|
8857
|
-
created_by?: {
|
|
8858
|
-
id?: string | undefined;
|
|
8859
|
-
name?: string | undefined;
|
|
8860
|
-
en_name?: string | undefined;
|
|
8861
|
-
email?: string | undefined;
|
|
8862
|
-
avatar_url?: string | undefined;
|
|
8863
|
-
} | undefined;
|
|
8864
|
-
created_time?: number | undefined;
|
|
8865
|
-
last_modified_by?: {
|
|
8866
|
-
id?: string | undefined;
|
|
8867
|
-
name?: string | undefined;
|
|
8868
|
-
en_name?: string | undefined;
|
|
8869
|
-
email?: string | undefined;
|
|
8870
|
-
avatar_url?: string | undefined;
|
|
8871
|
-
} | undefined;
|
|
8872
|
-
last_modified_time?: number | undefined;
|
|
8873
9160
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8874
9161
|
text?: string;
|
|
8875
9162
|
link?: string;
|
|
@@ -8899,6 +9186,23 @@ declare abstract class Client$1 {
|
|
|
8899
9186
|
url?: string;
|
|
8900
9187
|
tmp_url?: string;
|
|
8901
9188
|
}>>;
|
|
9189
|
+
record_id?: string | undefined;
|
|
9190
|
+
created_by?: {
|
|
9191
|
+
id?: string | undefined;
|
|
9192
|
+
name?: string | undefined;
|
|
9193
|
+
en_name?: string | undefined;
|
|
9194
|
+
email?: string | undefined;
|
|
9195
|
+
avatar_url?: string | undefined;
|
|
9196
|
+
} | undefined;
|
|
9197
|
+
created_time?: number | undefined;
|
|
9198
|
+
last_modified_by?: {
|
|
9199
|
+
id?: string | undefined;
|
|
9200
|
+
name?: string | undefined;
|
|
9201
|
+
en_name?: string | undefined;
|
|
9202
|
+
email?: string | undefined;
|
|
9203
|
+
avatar_url?: string | undefined;
|
|
9204
|
+
} | undefined;
|
|
9205
|
+
last_modified_time?: number | undefined;
|
|
8902
9206
|
}[] | undefined;
|
|
8903
9207
|
} | null, void, unknown>;
|
|
8904
9208
|
}>;
|
|
@@ -8938,23 +9242,6 @@ declare abstract class Client$1 {
|
|
|
8938
9242
|
page_token?: string | undefined;
|
|
8939
9243
|
total?: number | undefined;
|
|
8940
9244
|
items?: {
|
|
8941
|
-
record_id?: string | undefined;
|
|
8942
|
-
created_by?: {
|
|
8943
|
-
id?: string | undefined;
|
|
8944
|
-
name?: string | undefined;
|
|
8945
|
-
en_name?: string | undefined;
|
|
8946
|
-
email?: string | undefined;
|
|
8947
|
-
avatar_url?: string | undefined;
|
|
8948
|
-
} | undefined;
|
|
8949
|
-
created_time?: number | undefined;
|
|
8950
|
-
last_modified_by?: {
|
|
8951
|
-
id?: string | undefined;
|
|
8952
|
-
name?: string | undefined;
|
|
8953
|
-
en_name?: string | undefined;
|
|
8954
|
-
email?: string | undefined;
|
|
8955
|
-
avatar_url?: string | undefined;
|
|
8956
|
-
} | undefined;
|
|
8957
|
-
last_modified_time?: number | undefined;
|
|
8958
9245
|
fields: Record<string, string | number | number | number | boolean | {
|
|
8959
9246
|
text?: string;
|
|
8960
9247
|
link?: string;
|
|
@@ -8984,6 +9271,23 @@ declare abstract class Client$1 {
|
|
|
8984
9271
|
url?: string;
|
|
8985
9272
|
tmp_url?: string;
|
|
8986
9273
|
}>>;
|
|
9274
|
+
record_id?: string | undefined;
|
|
9275
|
+
created_by?: {
|
|
9276
|
+
id?: string | undefined;
|
|
9277
|
+
name?: string | undefined;
|
|
9278
|
+
en_name?: string | undefined;
|
|
9279
|
+
email?: string | undefined;
|
|
9280
|
+
avatar_url?: string | undefined;
|
|
9281
|
+
} | undefined;
|
|
9282
|
+
created_time?: number | undefined;
|
|
9283
|
+
last_modified_by?: {
|
|
9284
|
+
id?: string | undefined;
|
|
9285
|
+
name?: string | undefined;
|
|
9286
|
+
en_name?: string | undefined;
|
|
9287
|
+
email?: string | undefined;
|
|
9288
|
+
avatar_url?: string | undefined;
|
|
9289
|
+
} | undefined;
|
|
9290
|
+
last_modified_time?: number | undefined;
|
|
8987
9291
|
}[] | undefined;
|
|
8988
9292
|
} | undefined;
|
|
8989
9293
|
}>;
|
|
@@ -9042,23 +9346,6 @@ declare abstract class Client$1 {
|
|
|
9042
9346
|
msg?: string | undefined;
|
|
9043
9347
|
data?: {
|
|
9044
9348
|
record?: {
|
|
9045
|
-
record_id?: string | undefined;
|
|
9046
|
-
created_by?: {
|
|
9047
|
-
id?: string | undefined;
|
|
9048
|
-
name?: string | undefined;
|
|
9049
|
-
en_name?: string | undefined;
|
|
9050
|
-
email?: string | undefined;
|
|
9051
|
-
avatar_url?: string | undefined;
|
|
9052
|
-
} | undefined;
|
|
9053
|
-
created_time?: number | undefined;
|
|
9054
|
-
last_modified_by?: {
|
|
9055
|
-
id?: string | undefined;
|
|
9056
|
-
name?: string | undefined;
|
|
9057
|
-
en_name?: string | undefined;
|
|
9058
|
-
email?: string | undefined;
|
|
9059
|
-
avatar_url?: string | undefined;
|
|
9060
|
-
} | undefined;
|
|
9061
|
-
last_modified_time?: number | undefined;
|
|
9062
9349
|
fields: Record<string, string | number | number | number | boolean | {
|
|
9063
9350
|
text?: string;
|
|
9064
9351
|
link?: string;
|
|
@@ -9088,6 +9375,23 @@ declare abstract class Client$1 {
|
|
|
9088
9375
|
url?: string;
|
|
9089
9376
|
tmp_url?: string;
|
|
9090
9377
|
}>>;
|
|
9378
|
+
record_id?: string | undefined;
|
|
9379
|
+
created_by?: {
|
|
9380
|
+
id?: string | undefined;
|
|
9381
|
+
name?: string | undefined;
|
|
9382
|
+
en_name?: string | undefined;
|
|
9383
|
+
email?: string | undefined;
|
|
9384
|
+
avatar_url?: string | undefined;
|
|
9385
|
+
} | undefined;
|
|
9386
|
+
created_time?: number | undefined;
|
|
9387
|
+
last_modified_by?: {
|
|
9388
|
+
id?: string | undefined;
|
|
9389
|
+
name?: string | undefined;
|
|
9390
|
+
en_name?: string | undefined;
|
|
9391
|
+
email?: string | undefined;
|
|
9392
|
+
avatar_url?: string | undefined;
|
|
9393
|
+
} | undefined;
|
|
9394
|
+
last_modified_time?: number | undefined;
|
|
9091
9395
|
} | undefined;
|
|
9092
9396
|
} | undefined;
|
|
9093
9397
|
}>;
|
|
@@ -10062,6 +10366,7 @@ declare abstract class Client$1 {
|
|
|
10062
10366
|
others_content?: string | undefined;
|
|
10063
10367
|
}[] | undefined;
|
|
10064
10368
|
}[] | undefined;
|
|
10369
|
+
approval_reason?: string | undefined;
|
|
10065
10370
|
}[] | undefined;
|
|
10066
10371
|
need_notification?: boolean | undefined;
|
|
10067
10372
|
instance_start_time_admin?: string | undefined;
|
|
@@ -10107,12 +10412,14 @@ declare abstract class Client$1 {
|
|
|
10107
10412
|
others_content?: string | undefined;
|
|
10108
10413
|
}[] | undefined;
|
|
10109
10414
|
}[] | undefined;
|
|
10415
|
+
approval_reason?: string | undefined;
|
|
10110
10416
|
}[] | undefined;
|
|
10111
10417
|
} | undefined;
|
|
10112
10418
|
}>;
|
|
10113
10419
|
listWithIterator: (payload?: {
|
|
10114
10420
|
params?: {
|
|
10115
10421
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
10422
|
+
need_resource_customization?: boolean;
|
|
10116
10423
|
page_token?: string;
|
|
10117
10424
|
page_size?: number;
|
|
10118
10425
|
};
|
|
@@ -10167,6 +10474,7 @@ declare abstract class Client$1 {
|
|
|
10167
10474
|
list: (payload?: {
|
|
10168
10475
|
params?: {
|
|
10169
10476
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
10477
|
+
need_resource_customization?: boolean;
|
|
10170
10478
|
page_token?: string;
|
|
10171
10479
|
page_size?: number;
|
|
10172
10480
|
};
|
|
@@ -10313,10 +10621,19 @@ declare abstract class Client$1 {
|
|
|
10313
10621
|
icon_type?: "vc" | "live" | "default";
|
|
10314
10622
|
description?: string;
|
|
10315
10623
|
meeting_url?: string;
|
|
10624
|
+
live_link?: string;
|
|
10316
10625
|
vc_info?: {
|
|
10317
10626
|
unique_id: string;
|
|
10318
10627
|
meeting_no: string;
|
|
10319
10628
|
};
|
|
10629
|
+
meeting_settings?: {
|
|
10630
|
+
owner_id?: string;
|
|
10631
|
+
join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees";
|
|
10632
|
+
assign_hosts?: Array<string>;
|
|
10633
|
+
auto_record?: boolean;
|
|
10634
|
+
open_lobby?: boolean;
|
|
10635
|
+
allow_attendees_start?: boolean;
|
|
10636
|
+
};
|
|
10320
10637
|
};
|
|
10321
10638
|
visibility?: "default" | "public" | "private";
|
|
10322
10639
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -10340,6 +10657,7 @@ declare abstract class Client$1 {
|
|
|
10340
10657
|
};
|
|
10341
10658
|
params?: {
|
|
10342
10659
|
idempotency_key?: string;
|
|
10660
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
10343
10661
|
};
|
|
10344
10662
|
path: {
|
|
10345
10663
|
calendar_id: string;
|
|
@@ -10374,6 +10692,14 @@ declare abstract class Client$1 {
|
|
|
10374
10692
|
unique_id: string;
|
|
10375
10693
|
meeting_no: string;
|
|
10376
10694
|
} | undefined;
|
|
10695
|
+
meeting_settings?: {
|
|
10696
|
+
owner_id?: string | undefined;
|
|
10697
|
+
join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
|
|
10698
|
+
assign_hosts?: string[] | undefined;
|
|
10699
|
+
auto_record?: boolean | undefined;
|
|
10700
|
+
open_lobby?: boolean | undefined;
|
|
10701
|
+
allow_attendees_start?: boolean | undefined;
|
|
10702
|
+
} | undefined;
|
|
10377
10703
|
} | undefined;
|
|
10378
10704
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10379
10705
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -10437,6 +10763,10 @@ declare abstract class Client$1 {
|
|
|
10437
10763
|
* - 当前身份必须对日历有reader、writer或owner权限才会返回日程详细信息(调用[获取日历](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/get)接口,role字段可查看权限)。;- [例外日程](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/introduction#71c5ec78)可通过event_id的非0时间戳后缀,来获取修改的重复性日程的哪一天日程的时间信息。
|
|
10438
10764
|
*/
|
|
10439
10765
|
get: (payload?: {
|
|
10766
|
+
params?: {
|
|
10767
|
+
need_meeting_settings?: boolean;
|
|
10768
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
10769
|
+
};
|
|
10440
10770
|
path: {
|
|
10441
10771
|
calendar_id: string;
|
|
10442
10772
|
event_id: string;
|
|
@@ -10466,6 +10796,18 @@ declare abstract class Client$1 {
|
|
|
10466
10796
|
description?: string | undefined;
|
|
10467
10797
|
meeting_url?: string | undefined;
|
|
10468
10798
|
live_link?: string | undefined;
|
|
10799
|
+
vc_info?: {
|
|
10800
|
+
unique_id: string;
|
|
10801
|
+
meeting_no: string;
|
|
10802
|
+
} | undefined;
|
|
10803
|
+
meeting_settings?: {
|
|
10804
|
+
owner_id?: string | undefined;
|
|
10805
|
+
join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
|
|
10806
|
+
assign_hosts?: string[] | undefined;
|
|
10807
|
+
auto_record?: boolean | undefined;
|
|
10808
|
+
open_lobby?: boolean | undefined;
|
|
10809
|
+
allow_attendees_start?: boolean | undefined;
|
|
10810
|
+
} | undefined;
|
|
10469
10811
|
} | undefined;
|
|
10470
10812
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10471
10813
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -10544,6 +10886,10 @@ declare abstract class Client$1 {
|
|
|
10544
10886
|
description?: string | undefined;
|
|
10545
10887
|
meeting_url?: string | undefined;
|
|
10546
10888
|
live_link?: string | undefined;
|
|
10889
|
+
vc_info?: {
|
|
10890
|
+
unique_id: string;
|
|
10891
|
+
meeting_no: string;
|
|
10892
|
+
} | undefined;
|
|
10547
10893
|
} | undefined;
|
|
10548
10894
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10549
10895
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -10602,10 +10948,19 @@ declare abstract class Client$1 {
|
|
|
10602
10948
|
icon_type?: "vc" | "live" | "default";
|
|
10603
10949
|
description?: string;
|
|
10604
10950
|
meeting_url?: string;
|
|
10951
|
+
live_link?: string;
|
|
10605
10952
|
vc_info?: {
|
|
10606
10953
|
unique_id: string;
|
|
10607
10954
|
meeting_no: string;
|
|
10608
10955
|
};
|
|
10956
|
+
meeting_settings?: {
|
|
10957
|
+
owner_id?: string;
|
|
10958
|
+
join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees";
|
|
10959
|
+
assign_hosts?: Array<string>;
|
|
10960
|
+
auto_record?: boolean;
|
|
10961
|
+
open_lobby?: boolean;
|
|
10962
|
+
allow_attendees_start?: boolean;
|
|
10963
|
+
};
|
|
10609
10964
|
};
|
|
10610
10965
|
visibility?: "default" | "public" | "private";
|
|
10611
10966
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
|
|
@@ -10627,6 +10982,9 @@ declare abstract class Client$1 {
|
|
|
10627
10982
|
app_link?: string;
|
|
10628
10983
|
}>;
|
|
10629
10984
|
};
|
|
10985
|
+
params?: {
|
|
10986
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
10987
|
+
};
|
|
10630
10988
|
path: {
|
|
10631
10989
|
calendar_id: string;
|
|
10632
10990
|
event_id: string;
|
|
@@ -10661,6 +11019,14 @@ declare abstract class Client$1 {
|
|
|
10661
11019
|
unique_id: string;
|
|
10662
11020
|
meeting_no: string;
|
|
10663
11021
|
} | undefined;
|
|
11022
|
+
meeting_settings?: {
|
|
11023
|
+
owner_id?: string | undefined;
|
|
11024
|
+
join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
|
|
11025
|
+
assign_hosts?: string[] | undefined;
|
|
11026
|
+
auto_record?: boolean | undefined;
|
|
11027
|
+
open_lobby?: boolean | undefined;
|
|
11028
|
+
allow_attendees_start?: boolean | undefined;
|
|
11029
|
+
} | undefined;
|
|
10664
11030
|
} | undefined;
|
|
10665
11031
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10666
11032
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
@@ -10722,7 +11088,6 @@ declare abstract class Client$1 {
|
|
|
10722
11088
|
organizer_calendar_id?: string | undefined;
|
|
10723
11089
|
summary?: string | undefined;
|
|
10724
11090
|
description?: string | undefined;
|
|
10725
|
-
need_notification?: boolean | undefined;
|
|
10726
11091
|
start_time: {
|
|
10727
11092
|
date?: string;
|
|
10728
11093
|
timestamp?: string;
|
|
@@ -10733,17 +11098,6 @@ declare abstract class Client$1 {
|
|
|
10733
11098
|
timestamp?: string;
|
|
10734
11099
|
timezone?: string;
|
|
10735
11100
|
};
|
|
10736
|
-
vchat?: {
|
|
10737
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
10738
|
-
icon_type?: "default" | "vc" | "live" | undefined;
|
|
10739
|
-
description?: string | undefined;
|
|
10740
|
-
meeting_url?: string | undefined;
|
|
10741
|
-
live_link?: string | undefined;
|
|
10742
|
-
vc_info?: {
|
|
10743
|
-
unique_id: string;
|
|
10744
|
-
meeting_no: string;
|
|
10745
|
-
} | undefined;
|
|
10746
|
-
} | undefined;
|
|
10747
11101
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10748
11102
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
10749
11103
|
free_busy_status?: "busy" | "free" | undefined;
|
|
@@ -10761,11 +11115,6 @@ declare abstract class Client$1 {
|
|
|
10761
11115
|
status?: "tentative" | "confirmed" | "cancelled" | undefined;
|
|
10762
11116
|
is_exception?: boolean | undefined;
|
|
10763
11117
|
recurring_event_id?: string | undefined;
|
|
10764
|
-
schemas?: {
|
|
10765
|
-
ui_name?: string | undefined;
|
|
10766
|
-
ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
|
|
10767
|
-
app_link?: string | undefined;
|
|
10768
|
-
}[] | undefined;
|
|
10769
11118
|
}[] | undefined;
|
|
10770
11119
|
} | null, void, unknown>;
|
|
10771
11120
|
}>;
|
|
@@ -10816,7 +11165,6 @@ declare abstract class Client$1 {
|
|
|
10816
11165
|
organizer_calendar_id?: string | undefined;
|
|
10817
11166
|
summary?: string | undefined;
|
|
10818
11167
|
description?: string | undefined;
|
|
10819
|
-
need_notification?: boolean | undefined;
|
|
10820
11168
|
start_time: {
|
|
10821
11169
|
date?: string;
|
|
10822
11170
|
timestamp?: string;
|
|
@@ -10827,17 +11175,6 @@ declare abstract class Client$1 {
|
|
|
10827
11175
|
timestamp?: string;
|
|
10828
11176
|
timezone?: string;
|
|
10829
11177
|
};
|
|
10830
|
-
vchat?: {
|
|
10831
|
-
vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
|
|
10832
|
-
icon_type?: "default" | "vc" | "live" | undefined;
|
|
10833
|
-
description?: string | undefined;
|
|
10834
|
-
meeting_url?: string | undefined;
|
|
10835
|
-
live_link?: string | undefined;
|
|
10836
|
-
vc_info?: {
|
|
10837
|
-
unique_id: string;
|
|
10838
|
-
meeting_no: string;
|
|
10839
|
-
} | undefined;
|
|
10840
|
-
} | undefined;
|
|
10841
11178
|
visibility?: "default" | "private" | "public" | undefined;
|
|
10842
11179
|
attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
|
|
10843
11180
|
free_busy_status?: "busy" | "free" | undefined;
|
|
@@ -10855,11 +11192,6 @@ declare abstract class Client$1 {
|
|
|
10855
11192
|
status?: "tentative" | "confirmed" | "cancelled" | undefined;
|
|
10856
11193
|
is_exception?: boolean | undefined;
|
|
10857
11194
|
recurring_event_id?: string | undefined;
|
|
10858
|
-
schemas?: {
|
|
10859
|
-
ui_name?: string | undefined;
|
|
10860
|
-
ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
|
|
10861
|
-
app_link?: string | undefined;
|
|
10862
|
-
}[] | undefined;
|
|
10863
11195
|
}[] | undefined;
|
|
10864
11196
|
page_token?: string | undefined;
|
|
10865
11197
|
} | undefined;
|
|
@@ -12999,6 +13331,80 @@ declare abstract class Client$1 {
|
|
|
12999
13331
|
} | undefined;
|
|
13000
13332
|
}>;
|
|
13001
13333
|
};
|
|
13334
|
+
/**
|
|
13335
|
+
* job_title
|
|
13336
|
+
*/
|
|
13337
|
+
jobTitle: {
|
|
13338
|
+
/**
|
|
13339
|
+
* {@link https://open.feishu.cn/api-explorer?project=contact&resource=job_title&apiName=get&version=v3 click to debug }
|
|
13340
|
+
*
|
|
13341
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=contact&resource=job_title&version=v3 document }
|
|
13342
|
+
*/
|
|
13343
|
+
get: (payload?: {
|
|
13344
|
+
path?: {
|
|
13345
|
+
job_title_id?: string;
|
|
13346
|
+
};
|
|
13347
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
13348
|
+
code?: number | undefined;
|
|
13349
|
+
msg?: string | undefined;
|
|
13350
|
+
data?: {
|
|
13351
|
+
job_title?: {
|
|
13352
|
+
job_title_id?: string | undefined;
|
|
13353
|
+
name?: string | undefined;
|
|
13354
|
+
i18n_name?: {
|
|
13355
|
+
locale?: string | undefined;
|
|
13356
|
+
value?: string | undefined;
|
|
13357
|
+
}[] | undefined;
|
|
13358
|
+
status?: boolean | undefined;
|
|
13359
|
+
} | undefined;
|
|
13360
|
+
} | undefined;
|
|
13361
|
+
}>;
|
|
13362
|
+
listWithIterator: (payload?: {
|
|
13363
|
+
params?: {
|
|
13364
|
+
page_size?: number;
|
|
13365
|
+
page_token?: string;
|
|
13366
|
+
};
|
|
13367
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
13368
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
13369
|
+
items?: {
|
|
13370
|
+
job_title_id?: string | undefined;
|
|
13371
|
+
name?: string | undefined;
|
|
13372
|
+
i18n_name?: {
|
|
13373
|
+
locale?: string | undefined;
|
|
13374
|
+
value?: string | undefined;
|
|
13375
|
+
}[] | undefined;
|
|
13376
|
+
status?: boolean | undefined;
|
|
13377
|
+
}[] | undefined;
|
|
13378
|
+
} | null, void, unknown>;
|
|
13379
|
+
}>;
|
|
13380
|
+
/**
|
|
13381
|
+
* {@link https://open.feishu.cn/api-explorer?project=contact&resource=job_title&apiName=list&version=v3 click to debug }
|
|
13382
|
+
*
|
|
13383
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=contact&resource=job_title&version=v3 document }
|
|
13384
|
+
*/
|
|
13385
|
+
list: (payload?: {
|
|
13386
|
+
params?: {
|
|
13387
|
+
page_size?: number;
|
|
13388
|
+
page_token?: string;
|
|
13389
|
+
};
|
|
13390
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
13391
|
+
code?: number | undefined;
|
|
13392
|
+
msg?: string | undefined;
|
|
13393
|
+
data?: {
|
|
13394
|
+
items?: {
|
|
13395
|
+
job_title_id?: string | undefined;
|
|
13396
|
+
name?: string | undefined;
|
|
13397
|
+
i18n_name?: {
|
|
13398
|
+
locale?: string | undefined;
|
|
13399
|
+
value?: string | undefined;
|
|
13400
|
+
}[] | undefined;
|
|
13401
|
+
status?: boolean | undefined;
|
|
13402
|
+
}[] | undefined;
|
|
13403
|
+
page_token?: string | undefined;
|
|
13404
|
+
has_more?: boolean | undefined;
|
|
13405
|
+
} | undefined;
|
|
13406
|
+
}>;
|
|
13407
|
+
};
|
|
13002
13408
|
/**
|
|
13003
13409
|
* 通讯录权限范围
|
|
13004
13410
|
*/
|
|
@@ -13363,6 +13769,7 @@ declare abstract class Client$1 {
|
|
|
13363
13769
|
} | undefined;
|
|
13364
13770
|
} | undefined;
|
|
13365
13771
|
}[] | undefined;
|
|
13772
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13366
13773
|
}[] | undefined;
|
|
13367
13774
|
} | undefined;
|
|
13368
13775
|
}>;
|
|
@@ -13489,6 +13896,7 @@ declare abstract class Client$1 {
|
|
|
13489
13896
|
};
|
|
13490
13897
|
};
|
|
13491
13898
|
}>;
|
|
13899
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
13492
13900
|
};
|
|
13493
13901
|
params?: {
|
|
13494
13902
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -13600,6 +14008,7 @@ declare abstract class Client$1 {
|
|
|
13600
14008
|
} | undefined;
|
|
13601
14009
|
} | undefined;
|
|
13602
14010
|
}[] | undefined;
|
|
14011
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13603
14012
|
} | undefined;
|
|
13604
14013
|
} | undefined;
|
|
13605
14014
|
}>;
|
|
@@ -13750,6 +14159,7 @@ declare abstract class Client$1 {
|
|
|
13750
14159
|
} | undefined;
|
|
13751
14160
|
} | undefined;
|
|
13752
14161
|
}[] | undefined;
|
|
14162
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13753
14163
|
}[] | undefined;
|
|
13754
14164
|
} | null, void, unknown>;
|
|
13755
14165
|
}>;
|
|
@@ -13879,6 +14289,7 @@ declare abstract class Client$1 {
|
|
|
13879
14289
|
} | undefined;
|
|
13880
14290
|
} | undefined;
|
|
13881
14291
|
}[] | undefined;
|
|
14292
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
13882
14293
|
}[] | undefined;
|
|
13883
14294
|
} | undefined;
|
|
13884
14295
|
}>;
|
|
@@ -14007,6 +14418,7 @@ declare abstract class Client$1 {
|
|
|
14007
14418
|
} | undefined;
|
|
14008
14419
|
} | undefined;
|
|
14009
14420
|
}[] | undefined;
|
|
14421
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14010
14422
|
} | undefined;
|
|
14011
14423
|
} | undefined;
|
|
14012
14424
|
}>;
|
|
@@ -14124,6 +14536,7 @@ declare abstract class Client$1 {
|
|
|
14124
14536
|
} | undefined;
|
|
14125
14537
|
} | undefined;
|
|
14126
14538
|
}[] | undefined;
|
|
14539
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14127
14540
|
}[] | undefined;
|
|
14128
14541
|
} | null, void, unknown>;
|
|
14129
14542
|
}>;
|
|
@@ -14250,6 +14663,7 @@ declare abstract class Client$1 {
|
|
|
14250
14663
|
} | undefined;
|
|
14251
14664
|
} | undefined;
|
|
14252
14665
|
}[] | undefined;
|
|
14666
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14253
14667
|
}[] | undefined;
|
|
14254
14668
|
} | undefined;
|
|
14255
14669
|
}>;
|
|
@@ -14339,6 +14753,7 @@ declare abstract class Client$1 {
|
|
|
14339
14753
|
};
|
|
14340
14754
|
};
|
|
14341
14755
|
}>;
|
|
14756
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
14342
14757
|
};
|
|
14343
14758
|
params?: {
|
|
14344
14759
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -14452,6 +14867,7 @@ declare abstract class Client$1 {
|
|
|
14452
14867
|
} | undefined;
|
|
14453
14868
|
} | undefined;
|
|
14454
14869
|
}[] | undefined;
|
|
14870
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14455
14871
|
} | undefined;
|
|
14456
14872
|
} | undefined;
|
|
14457
14873
|
}>;
|
|
@@ -14572,6 +14988,7 @@ declare abstract class Client$1 {
|
|
|
14572
14988
|
};
|
|
14573
14989
|
};
|
|
14574
14990
|
}>;
|
|
14991
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
14575
14992
|
};
|
|
14576
14993
|
params?: {
|
|
14577
14994
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -14683,9 +15100,104 @@ declare abstract class Client$1 {
|
|
|
14683
15100
|
} | undefined;
|
|
14684
15101
|
} | undefined;
|
|
14685
15102
|
}[] | undefined;
|
|
15103
|
+
dotted_line_leader_user_ids?: string[] | undefined;
|
|
14686
15104
|
} | undefined;
|
|
14687
15105
|
} | undefined;
|
|
14688
15106
|
}>;
|
|
15107
|
+
/**
|
|
15108
|
+
* {@link https://open.feishu.cn/api-explorer?project=contact&resource=user&apiName=update_user_id&version=v3 click to debug }
|
|
15109
|
+
*
|
|
15110
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update_user_id&project=contact&resource=user&version=v3 document }
|
|
15111
|
+
*/
|
|
15112
|
+
updateUserId: (payload?: {
|
|
15113
|
+
data: {
|
|
15114
|
+
new_user_id: string;
|
|
15115
|
+
};
|
|
15116
|
+
params?: {
|
|
15117
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
15118
|
+
};
|
|
15119
|
+
path: {
|
|
15120
|
+
user_id: string;
|
|
15121
|
+
};
|
|
15122
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
15123
|
+
code?: number | undefined;
|
|
15124
|
+
msg?: string | undefined;
|
|
15125
|
+
data?: {} | undefined;
|
|
15126
|
+
}>;
|
|
15127
|
+
};
|
|
15128
|
+
/**
|
|
15129
|
+
* work_city
|
|
15130
|
+
*/
|
|
15131
|
+
workCity: {
|
|
15132
|
+
/**
|
|
15133
|
+
* {@link https://open.feishu.cn/api-explorer?project=contact&resource=work_city&apiName=get&version=v3 click to debug }
|
|
15134
|
+
*
|
|
15135
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=contact&resource=work_city&version=v3 document }
|
|
15136
|
+
*/
|
|
15137
|
+
get: (payload?: {
|
|
15138
|
+
path?: {
|
|
15139
|
+
work_city_id?: string;
|
|
15140
|
+
};
|
|
15141
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
15142
|
+
code?: number | undefined;
|
|
15143
|
+
msg?: string | undefined;
|
|
15144
|
+
data?: {
|
|
15145
|
+
work_city?: {
|
|
15146
|
+
work_city_id?: string | undefined;
|
|
15147
|
+
name?: string | undefined;
|
|
15148
|
+
i18n_name?: {
|
|
15149
|
+
locale?: string | undefined;
|
|
15150
|
+
value?: string | undefined;
|
|
15151
|
+
}[] | undefined;
|
|
15152
|
+
status?: boolean | undefined;
|
|
15153
|
+
} | undefined;
|
|
15154
|
+
} | undefined;
|
|
15155
|
+
}>;
|
|
15156
|
+
listWithIterator: (payload?: {
|
|
15157
|
+
params?: {
|
|
15158
|
+
page_size?: number;
|
|
15159
|
+
page_token?: string;
|
|
15160
|
+
};
|
|
15161
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
15162
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
15163
|
+
items?: {
|
|
15164
|
+
work_city_id?: string | undefined;
|
|
15165
|
+
name?: string | undefined;
|
|
15166
|
+
i18n_name?: {
|
|
15167
|
+
locale?: string | undefined;
|
|
15168
|
+
value?: string | undefined;
|
|
15169
|
+
}[] | undefined;
|
|
15170
|
+
status?: boolean | undefined;
|
|
15171
|
+
}[] | undefined;
|
|
15172
|
+
} | null, void, unknown>;
|
|
15173
|
+
}>;
|
|
15174
|
+
/**
|
|
15175
|
+
* {@link https://open.feishu.cn/api-explorer?project=contact&resource=work_city&apiName=list&version=v3 click to debug }
|
|
15176
|
+
*
|
|
15177
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=contact&resource=work_city&version=v3 document }
|
|
15178
|
+
*/
|
|
15179
|
+
list: (payload?: {
|
|
15180
|
+
params?: {
|
|
15181
|
+
page_size?: number;
|
|
15182
|
+
page_token?: string;
|
|
15183
|
+
};
|
|
15184
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
15185
|
+
code?: number | undefined;
|
|
15186
|
+
msg?: string | undefined;
|
|
15187
|
+
data?: {
|
|
15188
|
+
items?: {
|
|
15189
|
+
work_city_id?: string | undefined;
|
|
15190
|
+
name?: string | undefined;
|
|
15191
|
+
i18n_name?: {
|
|
15192
|
+
locale?: string | undefined;
|
|
15193
|
+
value?: string | undefined;
|
|
15194
|
+
}[] | undefined;
|
|
15195
|
+
status?: boolean | undefined;
|
|
15196
|
+
}[] | undefined;
|
|
15197
|
+
page_token?: string | undefined;
|
|
15198
|
+
has_more?: boolean | undefined;
|
|
15199
|
+
} | undefined;
|
|
15200
|
+
}>;
|
|
14689
15201
|
};
|
|
14690
15202
|
};
|
|
14691
15203
|
/**
|
|
@@ -16393,16 +16905,11 @@ declare abstract class Client$1 {
|
|
|
16393
16905
|
data?: {
|
|
16394
16906
|
seniority_date?: string;
|
|
16395
16907
|
employee_number?: string;
|
|
16396
|
-
effective_time?: string;
|
|
16397
|
-
expiration_time?: string;
|
|
16398
16908
|
employment_type?: {
|
|
16399
16909
|
enum_name: string;
|
|
16400
16910
|
};
|
|
16401
16911
|
person_id?: string;
|
|
16402
16912
|
primary_employment?: boolean;
|
|
16403
|
-
employment_status?: {
|
|
16404
|
-
enum_name: string;
|
|
16405
|
-
};
|
|
16406
16913
|
custom_fields?: Array<{
|
|
16407
16914
|
field_name: string;
|
|
16408
16915
|
value: string;
|
|
@@ -16863,6 +17370,24 @@ declare abstract class Client$1 {
|
|
|
16863
17370
|
cost_center_id?: string;
|
|
16864
17371
|
rate?: number;
|
|
16865
17372
|
}>;
|
|
17373
|
+
original_employment_change?: {
|
|
17374
|
+
regular_employee_start_date?: string;
|
|
17375
|
+
seniority_date?: string;
|
|
17376
|
+
employee_number?: string;
|
|
17377
|
+
custom_fields?: Array<{
|
|
17378
|
+
custom_api_name: string;
|
|
17379
|
+
value: string;
|
|
17380
|
+
}>;
|
|
17381
|
+
};
|
|
17382
|
+
target_employment_change?: {
|
|
17383
|
+
regular_employee_start_date?: string;
|
|
17384
|
+
seniority_date?: string;
|
|
17385
|
+
employee_number?: string;
|
|
17386
|
+
custom_fields?: Array<{
|
|
17387
|
+
custom_api_name: string;
|
|
17388
|
+
value: string;
|
|
17389
|
+
}>;
|
|
17390
|
+
};
|
|
16866
17391
|
};
|
|
16867
17392
|
transfer_key?: string;
|
|
16868
17393
|
initiator_id?: string;
|
|
@@ -16936,6 +17461,34 @@ declare abstract class Client$1 {
|
|
|
16936
17461
|
cost_center_id?: string | undefined;
|
|
16937
17462
|
rate?: number | undefined;
|
|
16938
17463
|
}[] | undefined;
|
|
17464
|
+
original_employment_change?: {
|
|
17465
|
+
regular_employee_start_date?: string | undefined;
|
|
17466
|
+
seniority_date?: string | undefined;
|
|
17467
|
+
employee_number?: string | undefined;
|
|
17468
|
+
custom_fields?: {
|
|
17469
|
+
custom_api_name: string;
|
|
17470
|
+
name?: {
|
|
17471
|
+
zh_cn?: string | undefined;
|
|
17472
|
+
en_us?: string | undefined;
|
|
17473
|
+
} | undefined;
|
|
17474
|
+
type?: number | undefined;
|
|
17475
|
+
value: string;
|
|
17476
|
+
}[] | undefined;
|
|
17477
|
+
} | undefined;
|
|
17478
|
+
target_employment_change?: {
|
|
17479
|
+
regular_employee_start_date?: string | undefined;
|
|
17480
|
+
seniority_date?: string | undefined;
|
|
17481
|
+
employee_number?: string | undefined;
|
|
17482
|
+
custom_fields?: {
|
|
17483
|
+
custom_api_name: string;
|
|
17484
|
+
name?: {
|
|
17485
|
+
zh_cn?: string | undefined;
|
|
17486
|
+
en_us?: string | undefined;
|
|
17487
|
+
} | undefined;
|
|
17488
|
+
type?: number | undefined;
|
|
17489
|
+
value: string;
|
|
17490
|
+
}[] | undefined;
|
|
17491
|
+
} | undefined;
|
|
16939
17492
|
} | undefined;
|
|
16940
17493
|
} | undefined;
|
|
16941
17494
|
}>;
|
|
@@ -16968,7 +17521,7 @@ declare abstract class Client$1 {
|
|
|
16968
17521
|
effective_time: string;
|
|
16969
17522
|
expiration_time?: string;
|
|
16970
17523
|
job_family_id?: string;
|
|
16971
|
-
assignment_start_reason
|
|
17524
|
+
assignment_start_reason: {
|
|
16972
17525
|
enum_name: string;
|
|
16973
17526
|
};
|
|
16974
17527
|
probation_expected_end_date?: string;
|
|
@@ -17702,6 +18255,7 @@ declare abstract class Client$1 {
|
|
|
17702
18255
|
as_of_date?: string;
|
|
17703
18256
|
employment_id_list?: number;
|
|
17704
18257
|
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
18258
|
+
time_zone?: string;
|
|
17705
18259
|
};
|
|
17706
18260
|
}, options?: IRequestOptions$1) => Promise<{
|
|
17707
18261
|
code?: number | undefined;
|
|
@@ -17757,6 +18311,9 @@ declare abstract class Client$1 {
|
|
|
17757
18311
|
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
17758
18312
|
leave_update_time_min?: string;
|
|
17759
18313
|
leave_update_time_max?: string;
|
|
18314
|
+
return_detail?: boolean;
|
|
18315
|
+
leave_term_type?: number;
|
|
18316
|
+
time_zone?: string;
|
|
17760
18317
|
};
|
|
17761
18318
|
}, options?: IRequestOptions$1) => Promise<{
|
|
17762
18319
|
code?: number | undefined;
|
|
@@ -17784,6 +18341,19 @@ declare abstract class Client$1 {
|
|
|
17784
18341
|
submitted_at: string;
|
|
17785
18342
|
submitted_by: string;
|
|
17786
18343
|
notes: string;
|
|
18344
|
+
approval_date?: string | undefined;
|
|
18345
|
+
is_deducted?: boolean | undefined;
|
|
18346
|
+
details?: {
|
|
18347
|
+
leave_request_id: string;
|
|
18348
|
+
leave_date: string;
|
|
18349
|
+
leave_duration: string;
|
|
18350
|
+
leave_duration_unit: number;
|
|
18351
|
+
paid_type: number;
|
|
18352
|
+
}[] | undefined;
|
|
18353
|
+
leave_type_code?: string | undefined;
|
|
18354
|
+
actual_end_date?: string | undefined;
|
|
18355
|
+
estimated_end_date?: string | undefined;
|
|
18356
|
+
time_zone?: string | undefined;
|
|
17787
18357
|
}[] | undefined;
|
|
17788
18358
|
has_more?: boolean | undefined;
|
|
17789
18359
|
page_token?: string | undefined;
|
|
@@ -17853,6 +18423,7 @@ declare abstract class Client$1 {
|
|
|
17853
18423
|
granting_quantity: string;
|
|
17854
18424
|
granting_unit: number;
|
|
17855
18425
|
effective_date: string;
|
|
18426
|
+
expiration_date?: string;
|
|
17856
18427
|
reason: Array<{
|
|
17857
18428
|
lang: string;
|
|
17858
18429
|
value: string;
|
|
@@ -20529,8 +21100,10 @@ declare abstract class Client$1 {
|
|
|
20529
21100
|
fields: Array<number>;
|
|
20530
21101
|
};
|
|
20531
21102
|
update_table_property?: {
|
|
20532
|
-
column_width
|
|
20533
|
-
column_index
|
|
21103
|
+
column_width?: number;
|
|
21104
|
+
column_index?: number;
|
|
21105
|
+
header_row?: boolean;
|
|
21106
|
+
header_column?: boolean;
|
|
20534
21107
|
};
|
|
20535
21108
|
insert_table_row?: {
|
|
20536
21109
|
row_index: number;
|
|
@@ -20567,6 +21140,9 @@ declare abstract class Client$1 {
|
|
|
20567
21140
|
};
|
|
20568
21141
|
replace_image?: {
|
|
20569
21142
|
token: string;
|
|
21143
|
+
width?: number;
|
|
21144
|
+
height?: number;
|
|
21145
|
+
align?: number;
|
|
20570
21146
|
};
|
|
20571
21147
|
replace_file?: {
|
|
20572
21148
|
token: string;
|
|
@@ -23007,6 +23583,7 @@ declare abstract class Client$1 {
|
|
|
23007
23583
|
width?: number | undefined;
|
|
23008
23584
|
height?: number | undefined;
|
|
23009
23585
|
token?: string | undefined;
|
|
23586
|
+
align?: number | undefined;
|
|
23010
23587
|
} | undefined;
|
|
23011
23588
|
isv?: {
|
|
23012
23589
|
component_id?: string | undefined;
|
|
@@ -23035,6 +23612,8 @@ declare abstract class Client$1 {
|
|
|
23035
23612
|
row_span?: number;
|
|
23036
23613
|
col_span?: number;
|
|
23037
23614
|
}>;
|
|
23615
|
+
header_row?: boolean;
|
|
23616
|
+
header_column?: boolean;
|
|
23038
23617
|
};
|
|
23039
23618
|
} | undefined;
|
|
23040
23619
|
table_cell?: {} | undefined;
|
|
@@ -25687,6 +26266,7 @@ declare abstract class Client$1 {
|
|
|
25687
26266
|
width?: number | undefined;
|
|
25688
26267
|
height?: number | undefined;
|
|
25689
26268
|
token?: string | undefined;
|
|
26269
|
+
align?: number | undefined;
|
|
25690
26270
|
} | undefined;
|
|
25691
26271
|
isv?: {
|
|
25692
26272
|
component_id?: string | undefined;
|
|
@@ -25713,6 +26293,8 @@ declare abstract class Client$1 {
|
|
|
25713
26293
|
row_span?: number;
|
|
25714
26294
|
col_span?: number;
|
|
25715
26295
|
}>;
|
|
26296
|
+
header_row?: boolean;
|
|
26297
|
+
header_column?: boolean;
|
|
25716
26298
|
};
|
|
25717
26299
|
} | undefined;
|
|
25718
26300
|
table_cell?: {} | undefined;
|
|
@@ -28345,6 +28927,7 @@ declare abstract class Client$1 {
|
|
|
28345
28927
|
width?: number | undefined;
|
|
28346
28928
|
height?: number | undefined;
|
|
28347
28929
|
token?: string | undefined;
|
|
28930
|
+
align?: number | undefined;
|
|
28348
28931
|
} | undefined;
|
|
28349
28932
|
isv?: {
|
|
28350
28933
|
component_id?: string | undefined;
|
|
@@ -28371,6 +28954,8 @@ declare abstract class Client$1 {
|
|
|
28371
28954
|
row_span?: number;
|
|
28372
28955
|
col_span?: number;
|
|
28373
28956
|
}>;
|
|
28957
|
+
header_row?: boolean;
|
|
28958
|
+
header_column?: boolean;
|
|
28374
28959
|
};
|
|
28375
28960
|
} | undefined;
|
|
28376
28961
|
table_cell?: {} | undefined;
|
|
@@ -31018,6 +31603,7 @@ declare abstract class Client$1 {
|
|
|
31018
31603
|
width?: number | undefined;
|
|
31019
31604
|
height?: number | undefined;
|
|
31020
31605
|
token?: string | undefined;
|
|
31606
|
+
align?: number | undefined;
|
|
31021
31607
|
} | undefined;
|
|
31022
31608
|
isv?: {
|
|
31023
31609
|
component_id?: string | undefined;
|
|
@@ -31044,6 +31630,8 @@ declare abstract class Client$1 {
|
|
|
31044
31630
|
row_span?: number;
|
|
31045
31631
|
col_span?: number;
|
|
31046
31632
|
}>;
|
|
31633
|
+
header_row?: boolean;
|
|
31634
|
+
header_column?: boolean;
|
|
31047
31635
|
};
|
|
31048
31636
|
} | undefined;
|
|
31049
31637
|
table_cell?: {} | undefined;
|
|
@@ -31450,6 +32038,7 @@ declare abstract class Client$1 {
|
|
|
31450
32038
|
create_user_id: string;
|
|
31451
32039
|
is_whole_day?: boolean;
|
|
31452
32040
|
expire_time: string;
|
|
32041
|
+
notify_time: string;
|
|
31453
32042
|
text_element_style?: {
|
|
31454
32043
|
bold?: boolean;
|
|
31455
32044
|
italic?: boolean;
|
|
@@ -31526,8 +32115,10 @@ declare abstract class Client$1 {
|
|
|
31526
32115
|
fields: Array<number>;
|
|
31527
32116
|
};
|
|
31528
32117
|
update_table_property?: {
|
|
31529
|
-
column_width
|
|
31530
|
-
column_index
|
|
32118
|
+
column_width?: number;
|
|
32119
|
+
column_index?: number;
|
|
32120
|
+
header_row?: boolean;
|
|
32121
|
+
header_column?: boolean;
|
|
31531
32122
|
};
|
|
31532
32123
|
insert_table_row?: {
|
|
31533
32124
|
row_index: number;
|
|
@@ -31564,6 +32155,9 @@ declare abstract class Client$1 {
|
|
|
31564
32155
|
};
|
|
31565
32156
|
replace_image?: {
|
|
31566
32157
|
token: string;
|
|
32158
|
+
width?: number;
|
|
32159
|
+
height?: number;
|
|
32160
|
+
align?: number;
|
|
31567
32161
|
};
|
|
31568
32162
|
replace_file?: {
|
|
31569
32163
|
token: string;
|
|
@@ -31624,6 +32218,7 @@ declare abstract class Client$1 {
|
|
|
31624
32218
|
create_user_id: string;
|
|
31625
32219
|
is_whole_day?: boolean;
|
|
31626
32220
|
expire_time: string;
|
|
32221
|
+
notify_time: string;
|
|
31627
32222
|
text_element_style?: {
|
|
31628
32223
|
bold?: boolean;
|
|
31629
32224
|
italic?: boolean;
|
|
@@ -33999,6 +34594,7 @@ declare abstract class Client$1 {
|
|
|
33999
34594
|
width?: number | undefined;
|
|
34000
34595
|
height?: number | undefined;
|
|
34001
34596
|
token?: string | undefined;
|
|
34597
|
+
align?: number | undefined;
|
|
34002
34598
|
} | undefined;
|
|
34003
34599
|
isv?: {
|
|
34004
34600
|
component_id?: string | undefined;
|
|
@@ -34027,6 +34623,8 @@ declare abstract class Client$1 {
|
|
|
34027
34623
|
row_span?: number;
|
|
34028
34624
|
col_span?: number;
|
|
34029
34625
|
}>;
|
|
34626
|
+
header_row?: boolean;
|
|
34627
|
+
header_column?: boolean;
|
|
34030
34628
|
};
|
|
34031
34629
|
} | undefined;
|
|
34032
34630
|
table_cell?: {} | undefined;
|
|
@@ -34485,6 +35083,7 @@ declare abstract class Client$1 {
|
|
|
34485
35083
|
create_user_id: string;
|
|
34486
35084
|
is_whole_day?: boolean;
|
|
34487
35085
|
expire_time: string;
|
|
35086
|
+
notify_time: string;
|
|
34488
35087
|
text_element_style?: {
|
|
34489
35088
|
bold?: boolean;
|
|
34490
35089
|
italic?: boolean;
|
|
@@ -34613,6 +35212,7 @@ declare abstract class Client$1 {
|
|
|
34613
35212
|
create_user_id: string;
|
|
34614
35213
|
is_whole_day?: boolean;
|
|
34615
35214
|
expire_time: string;
|
|
35215
|
+
notify_time: string;
|
|
34616
35216
|
text_element_style?: {
|
|
34617
35217
|
bold?: boolean;
|
|
34618
35218
|
italic?: boolean;
|
|
@@ -34741,6 +35341,7 @@ declare abstract class Client$1 {
|
|
|
34741
35341
|
create_user_id: string;
|
|
34742
35342
|
is_whole_day?: boolean;
|
|
34743
35343
|
expire_time: string;
|
|
35344
|
+
notify_time: string;
|
|
34744
35345
|
text_element_style?: {
|
|
34745
35346
|
bold?: boolean;
|
|
34746
35347
|
italic?: boolean;
|
|
@@ -34869,6 +35470,7 @@ declare abstract class Client$1 {
|
|
|
34869
35470
|
create_user_id: string;
|
|
34870
35471
|
is_whole_day?: boolean;
|
|
34871
35472
|
expire_time: string;
|
|
35473
|
+
notify_time: string;
|
|
34872
35474
|
text_element_style?: {
|
|
34873
35475
|
bold?: boolean;
|
|
34874
35476
|
italic?: boolean;
|
|
@@ -34997,6 +35599,7 @@ declare abstract class Client$1 {
|
|
|
34997
35599
|
create_user_id: string;
|
|
34998
35600
|
is_whole_day?: boolean;
|
|
34999
35601
|
expire_time: string;
|
|
35602
|
+
notify_time: string;
|
|
35000
35603
|
text_element_style?: {
|
|
35001
35604
|
bold?: boolean;
|
|
35002
35605
|
italic?: boolean;
|
|
@@ -35125,6 +35728,7 @@ declare abstract class Client$1 {
|
|
|
35125
35728
|
create_user_id: string;
|
|
35126
35729
|
is_whole_day?: boolean;
|
|
35127
35730
|
expire_time: string;
|
|
35731
|
+
notify_time: string;
|
|
35128
35732
|
text_element_style?: {
|
|
35129
35733
|
bold?: boolean;
|
|
35130
35734
|
italic?: boolean;
|
|
@@ -35253,6 +35857,7 @@ declare abstract class Client$1 {
|
|
|
35253
35857
|
create_user_id: string;
|
|
35254
35858
|
is_whole_day?: boolean;
|
|
35255
35859
|
expire_time: string;
|
|
35860
|
+
notify_time: string;
|
|
35256
35861
|
text_element_style?: {
|
|
35257
35862
|
bold?: boolean;
|
|
35258
35863
|
italic?: boolean;
|
|
@@ -35381,6 +35986,7 @@ declare abstract class Client$1 {
|
|
|
35381
35986
|
create_user_id: string;
|
|
35382
35987
|
is_whole_day?: boolean;
|
|
35383
35988
|
expire_time: string;
|
|
35989
|
+
notify_time: string;
|
|
35384
35990
|
text_element_style?: {
|
|
35385
35991
|
bold?: boolean;
|
|
35386
35992
|
italic?: boolean;
|
|
@@ -35509,6 +36115,7 @@ declare abstract class Client$1 {
|
|
|
35509
36115
|
create_user_id: string;
|
|
35510
36116
|
is_whole_day?: boolean;
|
|
35511
36117
|
expire_time: string;
|
|
36118
|
+
notify_time: string;
|
|
35512
36119
|
text_element_style?: {
|
|
35513
36120
|
bold?: boolean;
|
|
35514
36121
|
italic?: boolean;
|
|
@@ -35637,6 +36244,7 @@ declare abstract class Client$1 {
|
|
|
35637
36244
|
create_user_id: string;
|
|
35638
36245
|
is_whole_day?: boolean;
|
|
35639
36246
|
expire_time: string;
|
|
36247
|
+
notify_time: string;
|
|
35640
36248
|
text_element_style?: {
|
|
35641
36249
|
bold?: boolean;
|
|
35642
36250
|
italic?: boolean;
|
|
@@ -35765,6 +36373,7 @@ declare abstract class Client$1 {
|
|
|
35765
36373
|
create_user_id: string;
|
|
35766
36374
|
is_whole_day?: boolean;
|
|
35767
36375
|
expire_time: string;
|
|
36376
|
+
notify_time: string;
|
|
35768
36377
|
text_element_style?: {
|
|
35769
36378
|
bold?: boolean;
|
|
35770
36379
|
italic?: boolean;
|
|
@@ -35893,6 +36502,7 @@ declare abstract class Client$1 {
|
|
|
35893
36502
|
create_user_id: string;
|
|
35894
36503
|
is_whole_day?: boolean;
|
|
35895
36504
|
expire_time: string;
|
|
36505
|
+
notify_time: string;
|
|
35896
36506
|
text_element_style?: {
|
|
35897
36507
|
bold?: boolean;
|
|
35898
36508
|
italic?: boolean;
|
|
@@ -36021,6 +36631,7 @@ declare abstract class Client$1 {
|
|
|
36021
36631
|
create_user_id: string;
|
|
36022
36632
|
is_whole_day?: boolean;
|
|
36023
36633
|
expire_time: string;
|
|
36634
|
+
notify_time: string;
|
|
36024
36635
|
text_element_style?: {
|
|
36025
36636
|
bold?: boolean;
|
|
36026
36637
|
italic?: boolean;
|
|
@@ -36149,6 +36760,7 @@ declare abstract class Client$1 {
|
|
|
36149
36760
|
create_user_id: string;
|
|
36150
36761
|
is_whole_day?: boolean;
|
|
36151
36762
|
expire_time: string;
|
|
36763
|
+
notify_time: string;
|
|
36152
36764
|
text_element_style?: {
|
|
36153
36765
|
bold?: boolean;
|
|
36154
36766
|
italic?: boolean;
|
|
@@ -36277,6 +36889,7 @@ declare abstract class Client$1 {
|
|
|
36277
36889
|
create_user_id: string;
|
|
36278
36890
|
is_whole_day?: boolean;
|
|
36279
36891
|
expire_time: string;
|
|
36892
|
+
notify_time: string;
|
|
36280
36893
|
text_element_style?: {
|
|
36281
36894
|
bold?: boolean;
|
|
36282
36895
|
italic?: boolean;
|
|
@@ -36405,6 +37018,7 @@ declare abstract class Client$1 {
|
|
|
36405
37018
|
create_user_id: string;
|
|
36406
37019
|
is_whole_day?: boolean;
|
|
36407
37020
|
expire_time: string;
|
|
37021
|
+
notify_time: string;
|
|
36408
37022
|
text_element_style?: {
|
|
36409
37023
|
bold?: boolean;
|
|
36410
37024
|
italic?: boolean;
|
|
@@ -36495,7 +37109,9 @@ declare abstract class Client$1 {
|
|
|
36495
37109
|
url: string;
|
|
36496
37110
|
};
|
|
36497
37111
|
};
|
|
36498
|
-
image?: {
|
|
37112
|
+
image?: {
|
|
37113
|
+
align?: number;
|
|
37114
|
+
};
|
|
36499
37115
|
isv?: {};
|
|
36500
37116
|
add_ons?: {
|
|
36501
37117
|
component_id?: string;
|
|
@@ -36515,6 +37131,8 @@ declare abstract class Client$1 {
|
|
|
36515
37131
|
row_span?: number;
|
|
36516
37132
|
col_span?: number;
|
|
36517
37133
|
}>;
|
|
37134
|
+
header_row?: boolean;
|
|
37135
|
+
header_column?: boolean;
|
|
36518
37136
|
};
|
|
36519
37137
|
};
|
|
36520
37138
|
quote_container?: {};
|
|
@@ -38833,6 +39451,7 @@ declare abstract class Client$1 {
|
|
|
38833
39451
|
width?: number | undefined;
|
|
38834
39452
|
height?: number | undefined;
|
|
38835
39453
|
token?: string | undefined;
|
|
39454
|
+
align?: number | undefined;
|
|
38836
39455
|
} | undefined;
|
|
38837
39456
|
isv?: {
|
|
38838
39457
|
component_id?: string | undefined;
|
|
@@ -38861,6 +39480,8 @@ declare abstract class Client$1 {
|
|
|
38861
39480
|
row_span?: number;
|
|
38862
39481
|
col_span?: number;
|
|
38863
39482
|
}>;
|
|
39483
|
+
header_row?: boolean;
|
|
39484
|
+
header_column?: boolean;
|
|
38864
39485
|
};
|
|
38865
39486
|
} | undefined;
|
|
38866
39487
|
table_cell?: {} | undefined;
|
|
@@ -41500,6 +42121,7 @@ declare abstract class Client$1 {
|
|
|
41500
42121
|
width?: number | undefined;
|
|
41501
42122
|
height?: number | undefined;
|
|
41502
42123
|
token?: string | undefined;
|
|
42124
|
+
align?: number | undefined;
|
|
41503
42125
|
} | undefined;
|
|
41504
42126
|
isv?: {
|
|
41505
42127
|
component_id?: string | undefined;
|
|
@@ -41526,6 +42148,8 @@ declare abstract class Client$1 {
|
|
|
41526
42148
|
row_span?: number;
|
|
41527
42149
|
col_span?: number;
|
|
41528
42150
|
}>;
|
|
42151
|
+
header_row?: boolean;
|
|
42152
|
+
header_column?: boolean;
|
|
41529
42153
|
};
|
|
41530
42154
|
} | undefined;
|
|
41531
42155
|
table_cell?: {} | undefined;
|
|
@@ -44174,6 +44798,7 @@ declare abstract class Client$1 {
|
|
|
44174
44798
|
width?: number | undefined;
|
|
44175
44799
|
height?: number | undefined;
|
|
44176
44800
|
token?: string | undefined;
|
|
44801
|
+
align?: number | undefined;
|
|
44177
44802
|
} | undefined;
|
|
44178
44803
|
isv?: {
|
|
44179
44804
|
component_id?: string | undefined;
|
|
@@ -44200,6 +44825,8 @@ declare abstract class Client$1 {
|
|
|
44200
44825
|
row_span?: number;
|
|
44201
44826
|
col_span?: number;
|
|
44202
44827
|
}>;
|
|
44828
|
+
header_row?: boolean;
|
|
44829
|
+
header_column?: boolean;
|
|
44203
44830
|
};
|
|
44204
44831
|
} | undefined;
|
|
44205
44832
|
table_cell?: {} | undefined;
|
|
@@ -45104,6 +45731,71 @@ declare abstract class Client$1 {
|
|
|
45104
45731
|
msg?: string | undefined;
|
|
45105
45732
|
data?: {} | undefined;
|
|
45106
45733
|
}>;
|
|
45734
|
+
listWithIterator: (payload?: {
|
|
45735
|
+
params: {
|
|
45736
|
+
page_size?: number;
|
|
45737
|
+
page_token?: string;
|
|
45738
|
+
file_type: "doc" | "sheet" | "file" | "docx";
|
|
45739
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45740
|
+
};
|
|
45741
|
+
path: {
|
|
45742
|
+
file_token: string;
|
|
45743
|
+
comment_id: string;
|
|
45744
|
+
};
|
|
45745
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
45746
|
+
[Symbol.asyncIterator](): AsyncGenerator<{} | null, void, unknown>;
|
|
45747
|
+
}>;
|
|
45748
|
+
/**
|
|
45749
|
+
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file.comment.reply&apiName=list&version=v1 click to debug }
|
|
45750
|
+
*
|
|
45751
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file-comment-reply/list document }
|
|
45752
|
+
*
|
|
45753
|
+
* 获取回复
|
|
45754
|
+
*
|
|
45755
|
+
* 该接口用于根据评论 ID 以及分页参数,获取回复。
|
|
45756
|
+
*/
|
|
45757
|
+
list: (payload?: {
|
|
45758
|
+
params: {
|
|
45759
|
+
page_size?: number;
|
|
45760
|
+
page_token?: string;
|
|
45761
|
+
file_type: "doc" | "sheet" | "file" | "docx";
|
|
45762
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45763
|
+
};
|
|
45764
|
+
path: {
|
|
45765
|
+
file_token: string;
|
|
45766
|
+
comment_id: string;
|
|
45767
|
+
};
|
|
45768
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
45769
|
+
code?: number | undefined;
|
|
45770
|
+
msg?: string | undefined;
|
|
45771
|
+
data?: {
|
|
45772
|
+
items?: {
|
|
45773
|
+
reply_id?: string | undefined;
|
|
45774
|
+
user_id?: string | undefined;
|
|
45775
|
+
create_time?: number | undefined;
|
|
45776
|
+
update_time?: number | undefined;
|
|
45777
|
+
content: {
|
|
45778
|
+
elements: Array<{
|
|
45779
|
+
type: "text_run" | "docs_link" | "person";
|
|
45780
|
+
text_run?: {
|
|
45781
|
+
text: string;
|
|
45782
|
+
};
|
|
45783
|
+
docs_link?: {
|
|
45784
|
+
url: string;
|
|
45785
|
+
};
|
|
45786
|
+
person?: {
|
|
45787
|
+
user_id: string;
|
|
45788
|
+
};
|
|
45789
|
+
}>;
|
|
45790
|
+
};
|
|
45791
|
+
extra?: {
|
|
45792
|
+
image_list?: string[] | undefined;
|
|
45793
|
+
} | undefined;
|
|
45794
|
+
}[] | undefined;
|
|
45795
|
+
page_token?: string | undefined;
|
|
45796
|
+
has_more: boolean;
|
|
45797
|
+
} | undefined;
|
|
45798
|
+
}>;
|
|
45107
45799
|
/**
|
|
45108
45800
|
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file.comment.reply&apiName=update&version=v1 click to debug }
|
|
45109
45801
|
*
|
|
@@ -45170,6 +45862,9 @@ declare abstract class Client$1 {
|
|
|
45170
45862
|
value: string;
|
|
45171
45863
|
}>;
|
|
45172
45864
|
};
|
|
45865
|
+
params?: {
|
|
45866
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45867
|
+
};
|
|
45173
45868
|
path?: {
|
|
45174
45869
|
file_token?: string;
|
|
45175
45870
|
};
|
|
@@ -45187,6 +45882,9 @@ declare abstract class Client$1 {
|
|
|
45187
45882
|
target_type: string;
|
|
45188
45883
|
target_token: string;
|
|
45189
45884
|
} | undefined;
|
|
45885
|
+
created_time?: string | undefined;
|
|
45886
|
+
modified_time?: string | undefined;
|
|
45887
|
+
owner_id?: string | undefined;
|
|
45190
45888
|
} | undefined;
|
|
45191
45889
|
} | undefined;
|
|
45192
45890
|
}>;
|
|
@@ -45227,6 +45925,9 @@ declare abstract class Client$1 {
|
|
|
45227
45925
|
refer_type: "file" | "docx" | "bitable" | "doc" | "sheet" | "mindnote";
|
|
45228
45926
|
};
|
|
45229
45927
|
};
|
|
45928
|
+
params?: {
|
|
45929
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45930
|
+
};
|
|
45230
45931
|
}, options?: IRequestOptions$1) => Promise<{
|
|
45231
45932
|
code?: number | undefined;
|
|
45232
45933
|
msg?: string | undefined;
|
|
@@ -45241,6 +45942,9 @@ declare abstract class Client$1 {
|
|
|
45241
45942
|
target_type: string;
|
|
45242
45943
|
target_token: string;
|
|
45243
45944
|
} | undefined;
|
|
45945
|
+
created_time?: string | undefined;
|
|
45946
|
+
modified_time?: string | undefined;
|
|
45947
|
+
owner_id?: string | undefined;
|
|
45244
45948
|
} | undefined;
|
|
45245
45949
|
} | undefined;
|
|
45246
45950
|
}>;
|
|
@@ -45271,6 +45975,27 @@ declare abstract class Client$1 {
|
|
|
45271
45975
|
task_id?: string | undefined;
|
|
45272
45976
|
} | undefined;
|
|
45273
45977
|
}>;
|
|
45978
|
+
/**
|
|
45979
|
+
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=delete_subscribe&version=v1 click to debug }
|
|
45980
|
+
*
|
|
45981
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/delete_subscribe document }
|
|
45982
|
+
*
|
|
45983
|
+
* 取消云文档事件订阅情况
|
|
45984
|
+
*
|
|
45985
|
+
* 该接口**仅支持文档拥有者**取消订阅自己文档的通知事件,可订阅的文档类型为**旧版文档**、**新版文档**、**电子表格**和**多维表格**。在调用该接口之前请确保正确[配置事件回调网址和订阅事件类型](https://open.feishu.cn/document/ukTMukTMukTM/uUTNz4SN1MjL1UzM#2eb3504a),事件类型参考[事件列表](https://open.feishu.cn/document/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。
|
|
45986
|
+
*/
|
|
45987
|
+
deleteSubscribe: (payload?: {
|
|
45988
|
+
params: {
|
|
45989
|
+
file_type: "doc" | "docx" | "sheet" | "bitable" | "file";
|
|
45990
|
+
};
|
|
45991
|
+
path: {
|
|
45992
|
+
file_token: string;
|
|
45993
|
+
};
|
|
45994
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
45995
|
+
code?: number | undefined;
|
|
45996
|
+
msg?: string | undefined;
|
|
45997
|
+
data?: {} | undefined;
|
|
45998
|
+
}>;
|
|
45274
45999
|
/**
|
|
45275
46000
|
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=download&version=v1 click to debug }
|
|
45276
46001
|
*
|
|
@@ -45289,11 +46014,35 @@ declare abstract class Client$1 {
|
|
|
45289
46014
|
}, options?: IRequestOptions$1) => Promise<{
|
|
45290
46015
|
writeFile: (filePath: string) => Promise<unknown>;
|
|
45291
46016
|
}>;
|
|
46017
|
+
/**
|
|
46018
|
+
* {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=get_subscribe&version=v1 click to debug }
|
|
46019
|
+
*
|
|
46020
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/get_subscribe document }
|
|
46021
|
+
*
|
|
46022
|
+
* 查询云文档事件订阅状态
|
|
46023
|
+
*
|
|
46024
|
+
* 该接口**仅支持文档拥有者**查询自己文档的订阅状态,可订阅的文档类型为**旧版文档**、**新版文档**、**电子表格**和**多维表格**。在调用该接口之前请确保正确[配置事件回调网址和订阅事件类型](https://open.feishu.cn/document/ukTMukTMukTM/uUTNz4SN1MjL1UzM#2eb3504a),事件类型参考[事件列表](https://open.feishu.cn/document/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。
|
|
46025
|
+
*/
|
|
46026
|
+
getSubscribe: (payload?: {
|
|
46027
|
+
params: {
|
|
46028
|
+
file_type: "doc" | "docx" | "sheet" | "bitable" | "file";
|
|
46029
|
+
};
|
|
46030
|
+
path: {
|
|
46031
|
+
file_token: string;
|
|
46032
|
+
};
|
|
46033
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
46034
|
+
code?: number | undefined;
|
|
46035
|
+
msg?: string | undefined;
|
|
46036
|
+
data?: {} | undefined;
|
|
46037
|
+
}>;
|
|
45292
46038
|
listWithIterator: (payload?: {
|
|
45293
46039
|
params?: {
|
|
45294
46040
|
page_size?: number;
|
|
45295
46041
|
page_token?: string;
|
|
45296
46042
|
folder_token?: string;
|
|
46043
|
+
order_by?: "EditedTime" | "CreatedTime";
|
|
46044
|
+
direction?: "ASC" | "DESC";
|
|
46045
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45297
46046
|
};
|
|
45298
46047
|
}, options?: IRequestOptions$1) => Promise<{
|
|
45299
46048
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
@@ -45307,6 +46056,9 @@ declare abstract class Client$1 {
|
|
|
45307
46056
|
target_type: string;
|
|
45308
46057
|
target_token: string;
|
|
45309
46058
|
} | undefined;
|
|
46059
|
+
created_time?: string | undefined;
|
|
46060
|
+
modified_time?: string | undefined;
|
|
46061
|
+
owner_id?: string | undefined;
|
|
45310
46062
|
}[] | undefined;
|
|
45311
46063
|
} | null, void, unknown>;
|
|
45312
46064
|
}>;
|
|
@@ -45324,6 +46076,9 @@ declare abstract class Client$1 {
|
|
|
45324
46076
|
page_size?: number;
|
|
45325
46077
|
page_token?: string;
|
|
45326
46078
|
folder_token?: string;
|
|
46079
|
+
order_by?: "EditedTime" | "CreatedTime";
|
|
46080
|
+
direction?: "ASC" | "DESC";
|
|
46081
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
45327
46082
|
};
|
|
45328
46083
|
}, options?: IRequestOptions$1) => Promise<{
|
|
45329
46084
|
code?: number | undefined;
|
|
@@ -45339,6 +46094,9 @@ declare abstract class Client$1 {
|
|
|
45339
46094
|
target_type: string;
|
|
45340
46095
|
target_token: string;
|
|
45341
46096
|
} | undefined;
|
|
46097
|
+
created_time?: string | undefined;
|
|
46098
|
+
modified_time?: string | undefined;
|
|
46099
|
+
owner_id?: string | undefined;
|
|
45342
46100
|
}[] | undefined;
|
|
45343
46101
|
next_page_token?: string | undefined;
|
|
45344
46102
|
has_more?: boolean | undefined;
|
|
@@ -45588,9 +46346,6 @@ declare abstract class Client$1 {
|
|
|
45588
46346
|
*/
|
|
45589
46347
|
get: (payload?: {
|
|
45590
46348
|
data: {
|
|
45591
|
-
subscription_id?: string;
|
|
45592
|
-
subscription_type?: "comment_update";
|
|
45593
|
-
is_subcribe?: boolean;
|
|
45594
46349
|
file_type: "doc" | "docx" | "wiki";
|
|
45595
46350
|
};
|
|
45596
46351
|
path?: {
|
|
@@ -45663,8 +46418,8 @@ declare abstract class Client$1 {
|
|
|
45663
46418
|
create_time?: string;
|
|
45664
46419
|
update_time?: string;
|
|
45665
46420
|
status?: "0" | "1" | "2";
|
|
45666
|
-
obj_type?: "
|
|
45667
|
-
parent_type?: "
|
|
46421
|
+
obj_type?: "docx";
|
|
46422
|
+
parent_type?: "docx";
|
|
45668
46423
|
};
|
|
45669
46424
|
params?: {
|
|
45670
46425
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -45684,8 +46439,8 @@ declare abstract class Client$1 {
|
|
|
45684
46439
|
create_time?: string | undefined;
|
|
45685
46440
|
update_time?: string | undefined;
|
|
45686
46441
|
status?: "0" | "1" | "2" | undefined;
|
|
45687
|
-
obj_type?: "docx" |
|
|
45688
|
-
parent_type?: "docx" |
|
|
46442
|
+
obj_type?: "docx" | undefined;
|
|
46443
|
+
parent_type?: "docx" | undefined;
|
|
45689
46444
|
} | undefined;
|
|
45690
46445
|
}>;
|
|
45691
46446
|
/**
|
|
@@ -45699,7 +46454,7 @@ declare abstract class Client$1 {
|
|
|
45699
46454
|
*/
|
|
45700
46455
|
delete: (payload?: {
|
|
45701
46456
|
params: {
|
|
45702
|
-
obj_type: "
|
|
46457
|
+
obj_type: "docx";
|
|
45703
46458
|
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
45704
46459
|
};
|
|
45705
46460
|
path: {
|
|
@@ -45722,7 +46477,7 @@ declare abstract class Client$1 {
|
|
|
45722
46477
|
*/
|
|
45723
46478
|
get: (payload?: {
|
|
45724
46479
|
params: {
|
|
45725
|
-
obj_type: "
|
|
46480
|
+
obj_type: "docx";
|
|
45726
46481
|
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
45727
46482
|
};
|
|
45728
46483
|
path: {
|
|
@@ -45741,15 +46496,15 @@ declare abstract class Client$1 {
|
|
|
45741
46496
|
create_time?: string | undefined;
|
|
45742
46497
|
update_time?: string | undefined;
|
|
45743
46498
|
status?: "0" | "1" | "2" | undefined;
|
|
45744
|
-
obj_type?: "docx" |
|
|
45745
|
-
parent_type?: "docx" |
|
|
46499
|
+
obj_type?: "docx" | undefined;
|
|
46500
|
+
parent_type?: "docx" | undefined;
|
|
45746
46501
|
} | undefined;
|
|
45747
46502
|
}>;
|
|
45748
46503
|
listWithIterator: (payload?: {
|
|
45749
46504
|
params: {
|
|
45750
46505
|
page_size: number;
|
|
45751
46506
|
page_token?: string;
|
|
45752
|
-
obj_type: "
|
|
46507
|
+
obj_type: "docx";
|
|
45753
46508
|
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
45754
46509
|
};
|
|
45755
46510
|
path: {
|
|
@@ -45766,8 +46521,8 @@ declare abstract class Client$1 {
|
|
|
45766
46521
|
create_time?: string | undefined;
|
|
45767
46522
|
update_time?: string | undefined;
|
|
45768
46523
|
status?: "0" | "1" | "2" | undefined;
|
|
45769
|
-
obj_type?: "docx" |
|
|
45770
|
-
parent_type?: "docx" |
|
|
46524
|
+
obj_type?: "docx" | undefined;
|
|
46525
|
+
parent_type?: "docx" | undefined;
|
|
45771
46526
|
}[] | undefined;
|
|
45772
46527
|
} | null, void, unknown>;
|
|
45773
46528
|
}>;
|
|
@@ -45784,7 +46539,7 @@ declare abstract class Client$1 {
|
|
|
45784
46539
|
params: {
|
|
45785
46540
|
page_size: number;
|
|
45786
46541
|
page_token?: string;
|
|
45787
|
-
obj_type: "
|
|
46542
|
+
obj_type: "docx";
|
|
45788
46543
|
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
45789
46544
|
};
|
|
45790
46545
|
path: {
|
|
@@ -45803,8 +46558,8 @@ declare abstract class Client$1 {
|
|
|
45803
46558
|
create_time?: string | undefined;
|
|
45804
46559
|
update_time?: string | undefined;
|
|
45805
46560
|
status?: "0" | "1" | "2" | undefined;
|
|
45806
|
-
obj_type?: "docx" |
|
|
45807
|
-
parent_type?: "docx" |
|
|
46561
|
+
obj_type?: "docx" | undefined;
|
|
46562
|
+
parent_type?: "docx" | undefined;
|
|
45808
46563
|
}[] | undefined;
|
|
45809
46564
|
page_token?: string | undefined;
|
|
45810
46565
|
has_more?: boolean | undefined;
|
|
@@ -46133,7 +46888,7 @@ declare abstract class Client$1 {
|
|
|
46133
46888
|
*/
|
|
46134
46889
|
auth: (payload?: {
|
|
46135
46890
|
params: {
|
|
46136
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
46891
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46137
46892
|
action: "view" | "edit" | "share" | "comment" | "export" | "copy" | "print";
|
|
46138
46893
|
};
|
|
46139
46894
|
path: {
|
|
@@ -46162,7 +46917,7 @@ declare abstract class Client$1 {
|
|
|
46162
46917
|
perm: "view" | "edit" | "full_access";
|
|
46163
46918
|
};
|
|
46164
46919
|
params: {
|
|
46165
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes";
|
|
46920
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes" | "slides";
|
|
46166
46921
|
need_notification?: boolean;
|
|
46167
46922
|
};
|
|
46168
46923
|
path: {
|
|
@@ -46190,7 +46945,7 @@ declare abstract class Client$1 {
|
|
|
46190
46945
|
*/
|
|
46191
46946
|
delete: (payload?: {
|
|
46192
46947
|
params: {
|
|
46193
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes";
|
|
46948
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "folder" | "mindnote" | "minutes" | "slides";
|
|
46194
46949
|
member_type: "email" | "openid" | "openchat" | "opendepartmentid" | "userid";
|
|
46195
46950
|
};
|
|
46196
46951
|
path: {
|
|
@@ -46215,7 +46970,7 @@ declare abstract class Client$1 {
|
|
|
46215
46970
|
*/
|
|
46216
46971
|
list: (payload?: {
|
|
46217
46972
|
params: {
|
|
46218
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
46973
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46219
46974
|
fields?: string;
|
|
46220
46975
|
};
|
|
46221
46976
|
path: {
|
|
@@ -46247,9 +47002,10 @@ declare abstract class Client$1 {
|
|
|
46247
47002
|
member_id: string;
|
|
46248
47003
|
};
|
|
46249
47004
|
params: {
|
|
46250
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47005
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46251
47006
|
need_notification?: boolean;
|
|
46252
47007
|
remove_old_owner?: boolean;
|
|
47008
|
+
stay_put?: boolean;
|
|
46253
47009
|
};
|
|
46254
47010
|
path: {
|
|
46255
47011
|
token: string;
|
|
@@ -46277,7 +47033,7 @@ declare abstract class Client$1 {
|
|
|
46277
47033
|
};
|
|
46278
47034
|
params: {
|
|
46279
47035
|
need_notification?: boolean;
|
|
46280
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47036
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46281
47037
|
};
|
|
46282
47038
|
path: {
|
|
46283
47039
|
token: string;
|
|
@@ -46310,7 +47066,7 @@ declare abstract class Client$1 {
|
|
|
46310
47066
|
*/
|
|
46311
47067
|
get: (payload?: {
|
|
46312
47068
|
params: {
|
|
46313
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47069
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46314
47070
|
};
|
|
46315
47071
|
path: {
|
|
46316
47072
|
token: string;
|
|
@@ -46349,7 +47105,7 @@ declare abstract class Client$1 {
|
|
|
46349
47105
|
invite_external?: boolean;
|
|
46350
47106
|
};
|
|
46351
47107
|
params: {
|
|
46352
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47108
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46353
47109
|
};
|
|
46354
47110
|
path: {
|
|
46355
47111
|
token: string;
|
|
@@ -46381,7 +47137,7 @@ declare abstract class Client$1 {
|
|
|
46381
47137
|
*/
|
|
46382
47138
|
create: (payload?: {
|
|
46383
47139
|
params: {
|
|
46384
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47140
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46385
47141
|
};
|
|
46386
47142
|
path?: {
|
|
46387
47143
|
token?: string;
|
|
@@ -46400,7 +47156,7 @@ declare abstract class Client$1 {
|
|
|
46400
47156
|
*/
|
|
46401
47157
|
delete: (payload?: {
|
|
46402
47158
|
params: {
|
|
46403
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47159
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46404
47160
|
};
|
|
46405
47161
|
path?: {
|
|
46406
47162
|
token?: string;
|
|
@@ -46417,7 +47173,7 @@ declare abstract class Client$1 {
|
|
|
46417
47173
|
*/
|
|
46418
47174
|
update: (payload?: {
|
|
46419
47175
|
params: {
|
|
46420
|
-
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
|
|
47176
|
+
type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes" | "slides";
|
|
46421
47177
|
};
|
|
46422
47178
|
path?: {
|
|
46423
47179
|
token?: string;
|
|
@@ -49157,6 +49913,10 @@ declare abstract class Client$1 {
|
|
|
49157
49913
|
department_id?: string | undefined;
|
|
49158
49914
|
probation_month?: number | undefined;
|
|
49159
49915
|
contract_year?: number | undefined;
|
|
49916
|
+
contract_period?: {
|
|
49917
|
+
period_type: number;
|
|
49918
|
+
period: number;
|
|
49919
|
+
} | undefined;
|
|
49160
49920
|
recruitment_type?: {
|
|
49161
49921
|
id?: string | undefined;
|
|
49162
49922
|
zh_name?: string | undefined;
|
|
@@ -49255,6 +50015,13 @@ declare abstract class Client$1 {
|
|
|
49255
50015
|
job_id?: string | undefined;
|
|
49256
50016
|
job_name?: string | undefined;
|
|
49257
50017
|
} | undefined;
|
|
50018
|
+
customized_module_list?: {
|
|
50019
|
+
ID?: string | undefined;
|
|
50020
|
+
object_list?: {
|
|
50021
|
+
object_id?: string | undefined;
|
|
50022
|
+
customize_value?: string | undefined;
|
|
50023
|
+
}[] | undefined;
|
|
50024
|
+
}[] | undefined;
|
|
49258
50025
|
} | undefined;
|
|
49259
50026
|
} | undefined;
|
|
49260
50027
|
}>;
|
|
@@ -49381,6 +50148,57 @@ declare abstract class Client$1 {
|
|
|
49381
50148
|
en_name?: string | undefined;
|
|
49382
50149
|
en_description?: string | undefined;
|
|
49383
50150
|
} | undefined;
|
|
50151
|
+
assessment_score?: {
|
|
50152
|
+
calculate_type: number;
|
|
50153
|
+
score: number;
|
|
50154
|
+
full_score?: number | undefined;
|
|
50155
|
+
} | undefined;
|
|
50156
|
+
question_list?: {
|
|
50157
|
+
id: string;
|
|
50158
|
+
title?: {
|
|
50159
|
+
zh_cn?: string | undefined;
|
|
50160
|
+
en_us?: string | undefined;
|
|
50161
|
+
} | undefined;
|
|
50162
|
+
description?: {
|
|
50163
|
+
zh_cn?: string | undefined;
|
|
50164
|
+
en_us?: string | undefined;
|
|
50165
|
+
} | undefined;
|
|
50166
|
+
content?: string | undefined;
|
|
50167
|
+
ability_list?: {
|
|
50168
|
+
id: string;
|
|
50169
|
+
name?: {
|
|
50170
|
+
zh_cn?: string | undefined;
|
|
50171
|
+
en_us?: string | undefined;
|
|
50172
|
+
} | undefined;
|
|
50173
|
+
description?: {
|
|
50174
|
+
zh_cn?: string | undefined;
|
|
50175
|
+
en_us?: string | undefined;
|
|
50176
|
+
} | undefined;
|
|
50177
|
+
}[] | undefined;
|
|
50178
|
+
}[] | undefined;
|
|
50179
|
+
code_question_list?: {
|
|
50180
|
+
id: string;
|
|
50181
|
+
title?: {
|
|
50182
|
+
zh_cn?: string | undefined;
|
|
50183
|
+
en_us?: string | undefined;
|
|
50184
|
+
} | undefined;
|
|
50185
|
+
description?: {
|
|
50186
|
+
zh_cn?: string | undefined;
|
|
50187
|
+
en_us?: string | undefined;
|
|
50188
|
+
} | undefined;
|
|
50189
|
+
content?: string | undefined;
|
|
50190
|
+
ability_list?: {
|
|
50191
|
+
id: string;
|
|
50192
|
+
name?: {
|
|
50193
|
+
zh_cn?: string | undefined;
|
|
50194
|
+
en_us?: string | undefined;
|
|
50195
|
+
} | undefined;
|
|
50196
|
+
description?: {
|
|
50197
|
+
zh_cn?: string | undefined;
|
|
50198
|
+
en_us?: string | undefined;
|
|
50199
|
+
} | undefined;
|
|
50200
|
+
}[] | undefined;
|
|
50201
|
+
}[] | undefined;
|
|
49384
50202
|
interviewer?: {
|
|
49385
50203
|
id?: string | undefined;
|
|
49386
50204
|
name?: {
|
|
@@ -49388,12 +50206,20 @@ declare abstract class Client$1 {
|
|
|
49388
50206
|
en_us?: string | undefined;
|
|
49389
50207
|
} | undefined;
|
|
49390
50208
|
} | undefined;
|
|
50209
|
+
image_list?: {
|
|
50210
|
+
id: string;
|
|
50211
|
+
url: string;
|
|
50212
|
+
name?: string | undefined;
|
|
50213
|
+
mime?: string | undefined;
|
|
50214
|
+
create_time?: string | undefined;
|
|
50215
|
+
}[] | undefined;
|
|
49391
50216
|
dimension_assessment_list?: {
|
|
49392
50217
|
id?: string | undefined;
|
|
49393
50218
|
name?: {
|
|
49394
50219
|
zh_cn?: string | undefined;
|
|
49395
50220
|
en_us?: string | undefined;
|
|
49396
50221
|
} | undefined;
|
|
50222
|
+
full_score?: number | undefined;
|
|
49397
50223
|
content?: string | undefined;
|
|
49398
50224
|
dimension_id?: string | undefined;
|
|
49399
50225
|
dimension_score?: {
|
|
@@ -49402,6 +50228,7 @@ declare abstract class Client$1 {
|
|
|
49402
50228
|
zh_cn?: string | undefined;
|
|
49403
50229
|
en_us?: string | undefined;
|
|
49404
50230
|
} | undefined;
|
|
50231
|
+
score_val?: number | undefined;
|
|
49405
50232
|
} | undefined;
|
|
49406
50233
|
dimension_score_list?: {
|
|
49407
50234
|
id?: string | undefined;
|
|
@@ -49409,6 +50236,42 @@ declare abstract class Client$1 {
|
|
|
49409
50236
|
zh_cn?: string | undefined;
|
|
49410
50237
|
en_us?: string | undefined;
|
|
49411
50238
|
} | undefined;
|
|
50239
|
+
score_val?: number | undefined;
|
|
50240
|
+
}[] | undefined;
|
|
50241
|
+
dimension_custom_score?: number | undefined;
|
|
50242
|
+
ability_list?: {
|
|
50243
|
+
id: string;
|
|
50244
|
+
name?: {
|
|
50245
|
+
zh_cn?: string | undefined;
|
|
50246
|
+
en_us?: string | undefined;
|
|
50247
|
+
} | undefined;
|
|
50248
|
+
description?: {
|
|
50249
|
+
zh_cn?: string | undefined;
|
|
50250
|
+
en_us?: string | undefined;
|
|
50251
|
+
} | undefined;
|
|
50252
|
+
}[] | undefined;
|
|
50253
|
+
question_list?: {
|
|
50254
|
+
id: string;
|
|
50255
|
+
title?: {
|
|
50256
|
+
zh_cn?: string | undefined;
|
|
50257
|
+
en_us?: string | undefined;
|
|
50258
|
+
} | undefined;
|
|
50259
|
+
description?: {
|
|
50260
|
+
zh_cn?: string | undefined;
|
|
50261
|
+
en_us?: string | undefined;
|
|
50262
|
+
} | undefined;
|
|
50263
|
+
content?: string | undefined;
|
|
50264
|
+
ability_list?: {
|
|
50265
|
+
id: string;
|
|
50266
|
+
name?: {
|
|
50267
|
+
zh_cn?: string | undefined;
|
|
50268
|
+
en_us?: string | undefined;
|
|
50269
|
+
} | undefined;
|
|
50270
|
+
description?: {
|
|
50271
|
+
zh_cn?: string | undefined;
|
|
50272
|
+
en_us?: string | undefined;
|
|
50273
|
+
} | undefined;
|
|
50274
|
+
}[] | undefined;
|
|
49412
50275
|
}[] | undefined;
|
|
49413
50276
|
dimension_type?: number | undefined;
|
|
49414
50277
|
}[] | undefined;
|
|
@@ -50002,6 +50865,57 @@ declare abstract class Client$1 {
|
|
|
50002
50865
|
en_name?: string | undefined;
|
|
50003
50866
|
en_description?: string | undefined;
|
|
50004
50867
|
} | undefined;
|
|
50868
|
+
assessment_score?: {
|
|
50869
|
+
calculate_type: number;
|
|
50870
|
+
score: number;
|
|
50871
|
+
full_score?: number | undefined;
|
|
50872
|
+
} | undefined;
|
|
50873
|
+
question_list?: {
|
|
50874
|
+
id: string;
|
|
50875
|
+
title?: {
|
|
50876
|
+
zh_cn?: string | undefined;
|
|
50877
|
+
en_us?: string | undefined;
|
|
50878
|
+
} | undefined;
|
|
50879
|
+
description?: {
|
|
50880
|
+
zh_cn?: string | undefined;
|
|
50881
|
+
en_us?: string | undefined;
|
|
50882
|
+
} | undefined;
|
|
50883
|
+
content?: string | undefined;
|
|
50884
|
+
ability_list?: {
|
|
50885
|
+
id: string;
|
|
50886
|
+
name?: {
|
|
50887
|
+
zh_cn?: string | undefined;
|
|
50888
|
+
en_us?: string | undefined;
|
|
50889
|
+
} | undefined;
|
|
50890
|
+
description?: {
|
|
50891
|
+
zh_cn?: string | undefined;
|
|
50892
|
+
en_us?: string | undefined;
|
|
50893
|
+
} | undefined;
|
|
50894
|
+
}[] | undefined;
|
|
50895
|
+
}[] | undefined;
|
|
50896
|
+
code_question_list?: {
|
|
50897
|
+
id: string;
|
|
50898
|
+
title?: {
|
|
50899
|
+
zh_cn?: string | undefined;
|
|
50900
|
+
en_us?: string | undefined;
|
|
50901
|
+
} | undefined;
|
|
50902
|
+
description?: {
|
|
50903
|
+
zh_cn?: string | undefined;
|
|
50904
|
+
en_us?: string | undefined;
|
|
50905
|
+
} | undefined;
|
|
50906
|
+
content?: string | undefined;
|
|
50907
|
+
ability_list?: {
|
|
50908
|
+
id: string;
|
|
50909
|
+
name?: {
|
|
50910
|
+
zh_cn?: string | undefined;
|
|
50911
|
+
en_us?: string | undefined;
|
|
50912
|
+
} | undefined;
|
|
50913
|
+
description?: {
|
|
50914
|
+
zh_cn?: string | undefined;
|
|
50915
|
+
en_us?: string | undefined;
|
|
50916
|
+
} | undefined;
|
|
50917
|
+
}[] | undefined;
|
|
50918
|
+
}[] | undefined;
|
|
50005
50919
|
interviewer?: {
|
|
50006
50920
|
id?: string | undefined;
|
|
50007
50921
|
name?: {
|
|
@@ -50009,12 +50923,20 @@ declare abstract class Client$1 {
|
|
|
50009
50923
|
en_us?: string | undefined;
|
|
50010
50924
|
} | undefined;
|
|
50011
50925
|
} | undefined;
|
|
50926
|
+
image_list?: {
|
|
50927
|
+
id: string;
|
|
50928
|
+
url: string;
|
|
50929
|
+
name?: string | undefined;
|
|
50930
|
+
mime?: string | undefined;
|
|
50931
|
+
create_time?: string | undefined;
|
|
50932
|
+
}[] | undefined;
|
|
50012
50933
|
dimension_assessment_list?: {
|
|
50013
50934
|
id?: string | undefined;
|
|
50014
50935
|
name?: {
|
|
50015
50936
|
zh_cn?: string | undefined;
|
|
50016
50937
|
en_us?: string | undefined;
|
|
50017
50938
|
} | undefined;
|
|
50939
|
+
full_score?: number | undefined;
|
|
50018
50940
|
content?: string | undefined;
|
|
50019
50941
|
dimension_id?: string | undefined;
|
|
50020
50942
|
dimension_score?: {
|
|
@@ -50023,6 +50945,7 @@ declare abstract class Client$1 {
|
|
|
50023
50945
|
zh_cn?: string | undefined;
|
|
50024
50946
|
en_us?: string | undefined;
|
|
50025
50947
|
} | undefined;
|
|
50948
|
+
score_val?: number | undefined;
|
|
50026
50949
|
} | undefined;
|
|
50027
50950
|
dimension_score_list?: {
|
|
50028
50951
|
id?: string | undefined;
|
|
@@ -50030,6 +50953,42 @@ declare abstract class Client$1 {
|
|
|
50030
50953
|
zh_cn?: string | undefined;
|
|
50031
50954
|
en_us?: string | undefined;
|
|
50032
50955
|
} | undefined;
|
|
50956
|
+
score_val?: number | undefined;
|
|
50957
|
+
}[] | undefined;
|
|
50958
|
+
dimension_custom_score?: number | undefined;
|
|
50959
|
+
ability_list?: {
|
|
50960
|
+
id: string;
|
|
50961
|
+
name?: {
|
|
50962
|
+
zh_cn?: string | undefined;
|
|
50963
|
+
en_us?: string | undefined;
|
|
50964
|
+
} | undefined;
|
|
50965
|
+
description?: {
|
|
50966
|
+
zh_cn?: string | undefined;
|
|
50967
|
+
en_us?: string | undefined;
|
|
50968
|
+
} | undefined;
|
|
50969
|
+
}[] | undefined;
|
|
50970
|
+
question_list?: {
|
|
50971
|
+
id: string;
|
|
50972
|
+
title?: {
|
|
50973
|
+
zh_cn?: string | undefined;
|
|
50974
|
+
en_us?: string | undefined;
|
|
50975
|
+
} | undefined;
|
|
50976
|
+
description?: {
|
|
50977
|
+
zh_cn?: string | undefined;
|
|
50978
|
+
en_us?: string | undefined;
|
|
50979
|
+
} | undefined;
|
|
50980
|
+
content?: string | undefined;
|
|
50981
|
+
ability_list?: {
|
|
50982
|
+
id: string;
|
|
50983
|
+
name?: {
|
|
50984
|
+
zh_cn?: string | undefined;
|
|
50985
|
+
en_us?: string | undefined;
|
|
50986
|
+
} | undefined;
|
|
50987
|
+
description?: {
|
|
50988
|
+
zh_cn?: string | undefined;
|
|
50989
|
+
en_us?: string | undefined;
|
|
50990
|
+
} | undefined;
|
|
50991
|
+
}[] | undefined;
|
|
50033
50992
|
}[] | undefined;
|
|
50034
50993
|
dimension_type?: number | undefined;
|
|
50035
50994
|
}[] | undefined;
|
|
@@ -50183,6 +51142,8 @@ declare abstract class Client$1 {
|
|
|
50183
51142
|
job_attribute?: number;
|
|
50184
51143
|
expiry_timestamp?: string;
|
|
50185
51144
|
interview_registration_schema_id?: string;
|
|
51145
|
+
onboard_registration_schema_id?: string;
|
|
51146
|
+
target_major_id_list?: Array<string>;
|
|
50186
51147
|
};
|
|
50187
51148
|
params?: {
|
|
50188
51149
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -50315,6 +51276,11 @@ declare abstract class Client$1 {
|
|
|
50315
51276
|
create_timestamp?: string | undefined;
|
|
50316
51277
|
update_timestamp?: string | undefined;
|
|
50317
51278
|
expiry_timestamp?: string | undefined;
|
|
51279
|
+
target_major_list?: {
|
|
51280
|
+
id?: string | undefined;
|
|
51281
|
+
zh_name?: string | undefined;
|
|
51282
|
+
en_name?: string | undefined;
|
|
51283
|
+
}[] | undefined;
|
|
50318
51284
|
} | undefined;
|
|
50319
51285
|
job_manager?: {
|
|
50320
51286
|
id?: string | undefined;
|
|
@@ -50326,6 +51292,15 @@ declare abstract class Client$1 {
|
|
|
50326
51292
|
schema_id?: string | undefined;
|
|
50327
51293
|
name?: string | undefined;
|
|
50328
51294
|
} | undefined;
|
|
51295
|
+
onboard_registration_schema_info?: {
|
|
51296
|
+
schema_id?: string | undefined;
|
|
51297
|
+
name?: string | undefined;
|
|
51298
|
+
} | undefined;
|
|
51299
|
+
target_major_list?: {
|
|
51300
|
+
id?: string | undefined;
|
|
51301
|
+
zh_name?: string | undefined;
|
|
51302
|
+
en_name?: string | undefined;
|
|
51303
|
+
}[] | undefined;
|
|
50329
51304
|
} | undefined;
|
|
50330
51305
|
}>;
|
|
50331
51306
|
/**
|
|
@@ -50373,6 +51348,7 @@ declare abstract class Client$1 {
|
|
|
50373
51348
|
address_id_list?: Array<string>;
|
|
50374
51349
|
job_attribute?: number;
|
|
50375
51350
|
expiry_timestamp?: string;
|
|
51351
|
+
target_major_id_list?: Array<string>;
|
|
50376
51352
|
};
|
|
50377
51353
|
params?: {
|
|
50378
51354
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -50508,6 +51484,11 @@ declare abstract class Client$1 {
|
|
|
50508
51484
|
create_timestamp?: string | undefined;
|
|
50509
51485
|
update_timestamp?: string | undefined;
|
|
50510
51486
|
expiry_timestamp?: string | undefined;
|
|
51487
|
+
target_major_list?: {
|
|
51488
|
+
id?: string | undefined;
|
|
51489
|
+
zh_name?: string | undefined;
|
|
51490
|
+
en_name?: string | undefined;
|
|
51491
|
+
}[] | undefined;
|
|
50511
51492
|
} | undefined;
|
|
50512
51493
|
job_manager?: {
|
|
50513
51494
|
id?: string | undefined;
|
|
@@ -50519,6 +51500,15 @@ declare abstract class Client$1 {
|
|
|
50519
51500
|
schema_id?: string | undefined;
|
|
50520
51501
|
name?: string | undefined;
|
|
50521
51502
|
} | undefined;
|
|
51503
|
+
onboard_registration_schema_info?: {
|
|
51504
|
+
schema_id?: string | undefined;
|
|
51505
|
+
name?: string | undefined;
|
|
51506
|
+
} | undefined;
|
|
51507
|
+
target_major_list?: {
|
|
51508
|
+
id?: string | undefined;
|
|
51509
|
+
zh_name?: string | undefined;
|
|
51510
|
+
en_name?: string | undefined;
|
|
51511
|
+
}[] | undefined;
|
|
50522
51512
|
} | undefined;
|
|
50523
51513
|
}>;
|
|
50524
51514
|
/**
|
|
@@ -50588,7 +51578,11 @@ declare abstract class Client$1 {
|
|
|
50588
51578
|
en_us?: string | undefined;
|
|
50589
51579
|
} | undefined;
|
|
50590
51580
|
}[] | undefined;
|
|
50591
|
-
|
|
51581
|
+
interview_registration?: {
|
|
51582
|
+
schema_id?: string | undefined;
|
|
51583
|
+
name?: string | undefined;
|
|
51584
|
+
} | undefined;
|
|
51585
|
+
onboard_registration?: {
|
|
50592
51586
|
schema_id?: string | undefined;
|
|
50593
51587
|
name?: string | undefined;
|
|
50594
51588
|
} | undefined;
|
|
@@ -50616,6 +51610,23 @@ declare abstract class Client$1 {
|
|
|
50616
51610
|
} | undefined;
|
|
50617
51611
|
}[] | undefined;
|
|
50618
51612
|
job_attribute?: number | undefined;
|
|
51613
|
+
interview_appointment_config?: {
|
|
51614
|
+
enable_interview_appointment_by_interviewer?: boolean | undefined;
|
|
51615
|
+
config?: {
|
|
51616
|
+
interview_type?: number | undefined;
|
|
51617
|
+
talent_timezone_code?: string | undefined;
|
|
51618
|
+
contact_user_id?: string | undefined;
|
|
51619
|
+
contact_mobile?: string | undefined;
|
|
51620
|
+
contact_email?: string | undefined;
|
|
51621
|
+
address_id?: string | undefined;
|
|
51622
|
+
video_type?: number | undefined;
|
|
51623
|
+
cc?: string[] | undefined;
|
|
51624
|
+
remark?: string | undefined;
|
|
51625
|
+
interview_notification_template_id?: string | undefined;
|
|
51626
|
+
appointment_notification_template_id?: string | undefined;
|
|
51627
|
+
cancel_interview_notification_template_id?: string | undefined;
|
|
51628
|
+
} | undefined;
|
|
51629
|
+
} | undefined;
|
|
50619
51630
|
} | undefined;
|
|
50620
51631
|
} | undefined;
|
|
50621
51632
|
}>;
|
|
@@ -50760,6 +51771,11 @@ declare abstract class Client$1 {
|
|
|
50760
51771
|
create_timestamp?: string | undefined;
|
|
50761
51772
|
update_timestamp?: string | undefined;
|
|
50762
51773
|
expiry_timestamp?: string | undefined;
|
|
51774
|
+
target_major_list?: {
|
|
51775
|
+
id?: string | undefined;
|
|
51776
|
+
zh_name?: string | undefined;
|
|
51777
|
+
en_name?: string | undefined;
|
|
51778
|
+
}[] | undefined;
|
|
50763
51779
|
} | undefined;
|
|
50764
51780
|
} | undefined;
|
|
50765
51781
|
}>;
|
|
@@ -50785,6 +51801,7 @@ declare abstract class Client$1 {
|
|
|
50785
51801
|
}>;
|
|
50786
51802
|
jr_id_list?: Array<string>;
|
|
50787
51803
|
interview_registration_schema_id?: string;
|
|
51804
|
+
onboard_registration_schema_id?: string;
|
|
50788
51805
|
interview_round_type_conf_list?: Array<{
|
|
50789
51806
|
round_biz_id?: string;
|
|
50790
51807
|
assessment_template_biz_id?: string;
|
|
@@ -50865,7 +51882,11 @@ declare abstract class Client$1 {
|
|
|
50865
51882
|
en_us?: string | undefined;
|
|
50866
51883
|
} | undefined;
|
|
50867
51884
|
}[] | undefined;
|
|
50868
|
-
|
|
51885
|
+
interview_registration?: {
|
|
51886
|
+
schema_id?: string | undefined;
|
|
51887
|
+
name?: string | undefined;
|
|
51888
|
+
} | undefined;
|
|
51889
|
+
onboard_registration?: {
|
|
50869
51890
|
schema_id?: string | undefined;
|
|
50870
51891
|
name?: string | undefined;
|
|
50871
51892
|
} | undefined;
|
|
@@ -50893,6 +51914,23 @@ declare abstract class Client$1 {
|
|
|
50893
51914
|
} | undefined;
|
|
50894
51915
|
}[] | undefined;
|
|
50895
51916
|
job_attribute?: number | undefined;
|
|
51917
|
+
interview_appointment_config?: {
|
|
51918
|
+
enable_interview_appointment_by_interviewer?: boolean | undefined;
|
|
51919
|
+
config?: {
|
|
51920
|
+
interview_type?: number | undefined;
|
|
51921
|
+
talent_timezone_code?: string | undefined;
|
|
51922
|
+
contact_user_id?: string | undefined;
|
|
51923
|
+
contact_mobile?: string | undefined;
|
|
51924
|
+
contact_email?: string | undefined;
|
|
51925
|
+
address_id?: string | undefined;
|
|
51926
|
+
video_type?: number | undefined;
|
|
51927
|
+
cc?: string[] | undefined;
|
|
51928
|
+
remark?: string | undefined;
|
|
51929
|
+
interview_notification_template_id?: string | undefined;
|
|
51930
|
+
appointment_notification_template_id?: string | undefined;
|
|
51931
|
+
cancel_interview_notification_template_id?: string | undefined;
|
|
51932
|
+
} | undefined;
|
|
51933
|
+
} | undefined;
|
|
50896
51934
|
} | undefined;
|
|
50897
51935
|
} | undefined;
|
|
50898
51936
|
}>;
|
|
@@ -50989,7 +52027,8 @@ declare abstract class Client$1 {
|
|
|
50989
52027
|
name: string;
|
|
50990
52028
|
display_progress: number;
|
|
50991
52029
|
head_count: number;
|
|
50992
|
-
recruitment_type_id
|
|
52030
|
+
recruitment_type_id?: string;
|
|
52031
|
+
employee_type_id?: string;
|
|
50993
52032
|
max_level_id?: string;
|
|
50994
52033
|
min_level_id?: string;
|
|
50995
52034
|
sequence_id?: string;
|
|
@@ -51010,6 +52049,8 @@ declare abstract class Client$1 {
|
|
|
51010
52049
|
object_id?: string;
|
|
51011
52050
|
value?: string;
|
|
51012
52051
|
}>;
|
|
52052
|
+
process_type?: number;
|
|
52053
|
+
job_type_id?: string;
|
|
51013
52054
|
};
|
|
51014
52055
|
params?: {
|
|
51015
52056
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -51032,6 +52073,13 @@ declare abstract class Client$1 {
|
|
|
51032
52073
|
en_us?: string | undefined;
|
|
51033
52074
|
} | undefined;
|
|
51034
52075
|
} | undefined;
|
|
52076
|
+
employee_type?: {
|
|
52077
|
+
id?: string | undefined;
|
|
52078
|
+
name?: {
|
|
52079
|
+
zh_cn?: string | undefined;
|
|
52080
|
+
en_us?: string | undefined;
|
|
52081
|
+
} | undefined;
|
|
52082
|
+
} | undefined;
|
|
51035
52083
|
max_level?: {
|
|
51036
52084
|
id?: string | undefined;
|
|
51037
52085
|
name?: {
|
|
@@ -51128,6 +52176,15 @@ declare abstract class Client$1 {
|
|
|
51128
52176
|
} | undefined;
|
|
51129
52177
|
}[] | undefined;
|
|
51130
52178
|
job_id_list?: string[] | undefined;
|
|
52179
|
+
process_type?: number | undefined;
|
|
52180
|
+
job_type?: {
|
|
52181
|
+
id: string;
|
|
52182
|
+
name: {
|
|
52183
|
+
zh_cn?: string;
|
|
52184
|
+
en_us?: string;
|
|
52185
|
+
};
|
|
52186
|
+
parent_id?: string | undefined;
|
|
52187
|
+
} | undefined;
|
|
51131
52188
|
} | undefined;
|
|
51132
52189
|
} | undefined;
|
|
51133
52190
|
}>;
|
|
@@ -51189,6 +52246,13 @@ declare abstract class Client$1 {
|
|
|
51189
52246
|
en_us?: string | undefined;
|
|
51190
52247
|
} | undefined;
|
|
51191
52248
|
} | undefined;
|
|
52249
|
+
employee_type?: {
|
|
52250
|
+
id?: string | undefined;
|
|
52251
|
+
name?: {
|
|
52252
|
+
zh_cn?: string | undefined;
|
|
52253
|
+
en_us?: string | undefined;
|
|
52254
|
+
} | undefined;
|
|
52255
|
+
} | undefined;
|
|
51192
52256
|
max_level?: {
|
|
51193
52257
|
id?: string | undefined;
|
|
51194
52258
|
name?: {
|
|
@@ -51285,6 +52349,15 @@ declare abstract class Client$1 {
|
|
|
51285
52349
|
} | undefined;
|
|
51286
52350
|
}[] | undefined;
|
|
51287
52351
|
job_id_list?: string[] | undefined;
|
|
52352
|
+
process_type?: number | undefined;
|
|
52353
|
+
job_type?: {
|
|
52354
|
+
id: string;
|
|
52355
|
+
name: {
|
|
52356
|
+
zh_cn?: string;
|
|
52357
|
+
en_us?: string;
|
|
52358
|
+
};
|
|
52359
|
+
parent_id?: string | undefined;
|
|
52360
|
+
} | undefined;
|
|
51288
52361
|
}[] | undefined;
|
|
51289
52362
|
} | undefined;
|
|
51290
52363
|
}>;
|
|
@@ -51320,6 +52393,13 @@ declare abstract class Client$1 {
|
|
|
51320
52393
|
en_us?: string | undefined;
|
|
51321
52394
|
} | undefined;
|
|
51322
52395
|
} | undefined;
|
|
52396
|
+
employee_type?: {
|
|
52397
|
+
id?: string | undefined;
|
|
52398
|
+
name?: {
|
|
52399
|
+
zh_cn?: string | undefined;
|
|
52400
|
+
en_us?: string | undefined;
|
|
52401
|
+
} | undefined;
|
|
52402
|
+
} | undefined;
|
|
51323
52403
|
max_level?: {
|
|
51324
52404
|
id?: string | undefined;
|
|
51325
52405
|
name?: {
|
|
@@ -51416,6 +52496,15 @@ declare abstract class Client$1 {
|
|
|
51416
52496
|
} | undefined;
|
|
51417
52497
|
}[] | undefined;
|
|
51418
52498
|
job_id_list?: string[] | undefined;
|
|
52499
|
+
process_type?: number | undefined;
|
|
52500
|
+
job_type?: {
|
|
52501
|
+
id: string;
|
|
52502
|
+
name: {
|
|
52503
|
+
zh_cn?: string;
|
|
52504
|
+
en_us?: string;
|
|
52505
|
+
};
|
|
52506
|
+
parent_id?: string | undefined;
|
|
52507
|
+
} | undefined;
|
|
51419
52508
|
}[] | undefined;
|
|
51420
52509
|
} | undefined;
|
|
51421
52510
|
}>;
|
|
@@ -51433,7 +52522,8 @@ declare abstract class Client$1 {
|
|
|
51433
52522
|
name: string;
|
|
51434
52523
|
display_progress: number;
|
|
51435
52524
|
head_count: number;
|
|
51436
|
-
recruitment_type_id
|
|
52525
|
+
recruitment_type_id?: string;
|
|
52526
|
+
employee_type_id?: string;
|
|
51437
52527
|
max_level_id?: string;
|
|
51438
52528
|
min_level_id?: string;
|
|
51439
52529
|
sequence_id?: string;
|
|
@@ -51454,6 +52544,8 @@ declare abstract class Client$1 {
|
|
|
51454
52544
|
object_id?: string;
|
|
51455
52545
|
value?: string;
|
|
51456
52546
|
}>;
|
|
52547
|
+
process_type?: number;
|
|
52548
|
+
job_type_id?: string;
|
|
51457
52549
|
};
|
|
51458
52550
|
params?: {
|
|
51459
52551
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -51734,6 +52826,10 @@ declare abstract class Client$1 {
|
|
|
51734
52826
|
job_level_id?: string;
|
|
51735
52827
|
probation_month?: number;
|
|
51736
52828
|
contract_year?: number;
|
|
52829
|
+
contract_period?: {
|
|
52830
|
+
period_type: number;
|
|
52831
|
+
period: number;
|
|
52832
|
+
};
|
|
51737
52833
|
expected_onboard_date?: string;
|
|
51738
52834
|
onboard_address_id?: string;
|
|
51739
52835
|
work_address_id?: string;
|
|
@@ -51746,7 +52842,7 @@ declare abstract class Client$1 {
|
|
|
51746
52842
|
operator_user_id: string;
|
|
51747
52843
|
};
|
|
51748
52844
|
salary_info?: {
|
|
51749
|
-
currency
|
|
52845
|
+
currency: string;
|
|
51750
52846
|
basic_salary?: string;
|
|
51751
52847
|
probation_salary_percentage?: string;
|
|
51752
52848
|
award_salary_multiple?: string;
|
|
@@ -51780,6 +52876,10 @@ declare abstract class Client$1 {
|
|
|
51780
52876
|
job_level_id?: string | undefined;
|
|
51781
52877
|
probation_month?: number | undefined;
|
|
51782
52878
|
contract_year?: number | undefined;
|
|
52879
|
+
contract_period?: {
|
|
52880
|
+
period_type: number;
|
|
52881
|
+
period: number;
|
|
52882
|
+
} | undefined;
|
|
51783
52883
|
expected_onboard_date?: string | undefined;
|
|
51784
52884
|
onboard_address_id?: string | undefined;
|
|
51785
52885
|
work_address_id?: string | undefined;
|
|
@@ -51792,7 +52892,7 @@ declare abstract class Client$1 {
|
|
|
51792
52892
|
operator_user_id: string;
|
|
51793
52893
|
} | undefined;
|
|
51794
52894
|
salary_info?: {
|
|
51795
|
-
currency
|
|
52895
|
+
currency: string;
|
|
51796
52896
|
basic_salary?: string | undefined;
|
|
51797
52897
|
probation_salary_percentage?: string | undefined;
|
|
51798
52898
|
award_salary_multiple?: string | undefined;
|
|
@@ -51847,6 +52947,10 @@ declare abstract class Client$1 {
|
|
|
51847
52947
|
department_id?: string | undefined;
|
|
51848
52948
|
probation_month?: number | undefined;
|
|
51849
52949
|
contract_year?: number | undefined;
|
|
52950
|
+
contract_period?: {
|
|
52951
|
+
period_type: number;
|
|
52952
|
+
period: number;
|
|
52953
|
+
} | undefined;
|
|
51850
52954
|
recruitment_type?: {
|
|
51851
52955
|
id?: string | undefined;
|
|
51852
52956
|
zh_name?: string | undefined;
|
|
@@ -51946,6 +53050,13 @@ declare abstract class Client$1 {
|
|
|
51946
53050
|
job_id?: string | undefined;
|
|
51947
53051
|
job_name?: string | undefined;
|
|
51948
53052
|
} | undefined;
|
|
53053
|
+
customized_module_list?: {
|
|
53054
|
+
ID?: string | undefined;
|
|
53055
|
+
object_list?: {
|
|
53056
|
+
object_id?: string | undefined;
|
|
53057
|
+
customize_value?: string | undefined;
|
|
53058
|
+
}[] | undefined;
|
|
53059
|
+
}[] | undefined;
|
|
51949
53060
|
} | undefined;
|
|
51950
53061
|
} | undefined;
|
|
51951
53062
|
}>;
|
|
@@ -52068,6 +53179,10 @@ declare abstract class Client$1 {
|
|
|
52068
53179
|
job_level_id?: string;
|
|
52069
53180
|
probation_month?: number;
|
|
52070
53181
|
contract_year?: number;
|
|
53182
|
+
contract_period?: {
|
|
53183
|
+
period_type: number;
|
|
53184
|
+
period: number;
|
|
53185
|
+
};
|
|
52071
53186
|
expected_onboard_date?: string;
|
|
52072
53187
|
onboard_address_id?: string;
|
|
52073
53188
|
work_address_id?: string;
|
|
@@ -52080,7 +53195,7 @@ declare abstract class Client$1 {
|
|
|
52080
53195
|
operator_user_id: string;
|
|
52081
53196
|
};
|
|
52082
53197
|
salary_info?: {
|
|
52083
|
-
currency
|
|
53198
|
+
currency: string;
|
|
52084
53199
|
basic_salary?: string;
|
|
52085
53200
|
probation_salary_percentage?: string;
|
|
52086
53201
|
award_salary_multiple?: string;
|
|
@@ -52103,7 +53218,47 @@ declare abstract class Client$1 {
|
|
|
52103
53218
|
}, options?: IRequestOptions$1) => Promise<{
|
|
52104
53219
|
code?: number | undefined;
|
|
52105
53220
|
msg?: string | undefined;
|
|
52106
|
-
data?: {
|
|
53221
|
+
data?: {
|
|
53222
|
+
offer_id?: string | undefined;
|
|
53223
|
+
schema_id?: string | undefined;
|
|
53224
|
+
basic_info?: {
|
|
53225
|
+
department_id?: string | undefined;
|
|
53226
|
+
leader_user_id?: string | undefined;
|
|
53227
|
+
employment_job_id?: string | undefined;
|
|
53228
|
+
employee_type_id?: string | undefined;
|
|
53229
|
+
job_family_id?: string | undefined;
|
|
53230
|
+
job_level_id?: string | undefined;
|
|
53231
|
+
probation_month?: number | undefined;
|
|
53232
|
+
contract_year?: number | undefined;
|
|
53233
|
+
contract_period?: {
|
|
53234
|
+
period_type: number;
|
|
53235
|
+
period: number;
|
|
53236
|
+
} | undefined;
|
|
53237
|
+
expected_onboard_date?: string | undefined;
|
|
53238
|
+
onboard_address_id?: string | undefined;
|
|
53239
|
+
work_address_id?: string | undefined;
|
|
53240
|
+
owner_user_id?: string | undefined;
|
|
53241
|
+
recommended_words?: string | undefined;
|
|
53242
|
+
job_requirement_id?: string | undefined;
|
|
53243
|
+
job_process_type_id?: number | undefined;
|
|
53244
|
+
attachment_id_list?: string[] | undefined;
|
|
53245
|
+
attachment_description?: string | undefined;
|
|
53246
|
+
operator_user_id: string;
|
|
53247
|
+
} | undefined;
|
|
53248
|
+
salary_info?: {
|
|
53249
|
+
currency: string;
|
|
53250
|
+
basic_salary?: string | undefined;
|
|
53251
|
+
probation_salary_percentage?: string | undefined;
|
|
53252
|
+
award_salary_multiple?: string | undefined;
|
|
53253
|
+
option_shares?: string | undefined;
|
|
53254
|
+
quarterly_bonus?: string | undefined;
|
|
53255
|
+
half_year_bonus?: string | undefined;
|
|
53256
|
+
} | undefined;
|
|
53257
|
+
customized_info_list?: {
|
|
53258
|
+
id?: string | undefined;
|
|
53259
|
+
value?: string | undefined;
|
|
53260
|
+
}[] | undefined;
|
|
53261
|
+
} | undefined;
|
|
52107
53262
|
}>;
|
|
52108
53263
|
};
|
|
52109
53264
|
/**
|
|
@@ -52785,6 +53940,180 @@ declare abstract class Client$1 {
|
|
|
52785
53940
|
} | undefined;
|
|
52786
53941
|
}>;
|
|
52787
53942
|
};
|
|
53943
|
+
/**
|
|
53944
|
+
* registration_schema
|
|
53945
|
+
*/
|
|
53946
|
+
registrationSchema: {
|
|
53947
|
+
listWithIterator: (payload?: {
|
|
53948
|
+
params?: {
|
|
53949
|
+
page_size?: number;
|
|
53950
|
+
page_token?: string;
|
|
53951
|
+
scenario?: number;
|
|
53952
|
+
};
|
|
53953
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
53954
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
53955
|
+
items?: {
|
|
53956
|
+
id?: string | undefined;
|
|
53957
|
+
name?: string | undefined;
|
|
53958
|
+
scenarios?: number[] | undefined;
|
|
53959
|
+
objects?: {
|
|
53960
|
+
id?: string | undefined;
|
|
53961
|
+
name?: {
|
|
53962
|
+
zh_cn?: string | undefined;
|
|
53963
|
+
en_us?: string | undefined;
|
|
53964
|
+
} | undefined;
|
|
53965
|
+
description?: {
|
|
53966
|
+
zh_cn?: string | undefined;
|
|
53967
|
+
en_us?: string | undefined;
|
|
53968
|
+
} | undefined;
|
|
53969
|
+
setting?: {
|
|
53970
|
+
object_type?: number | undefined;
|
|
53971
|
+
config?: {
|
|
53972
|
+
options?: {
|
|
53973
|
+
key?: string | undefined;
|
|
53974
|
+
name?: {
|
|
53975
|
+
zh_cn?: string | undefined;
|
|
53976
|
+
en_us?: string | undefined;
|
|
53977
|
+
} | undefined;
|
|
53978
|
+
description?: {
|
|
53979
|
+
zh_cn?: string | undefined;
|
|
53980
|
+
en_us?: string | undefined;
|
|
53981
|
+
} | undefined;
|
|
53982
|
+
active_status?: number | undefined;
|
|
53983
|
+
}[] | undefined;
|
|
53984
|
+
} | undefined;
|
|
53985
|
+
} | undefined;
|
|
53986
|
+
is_customized?: boolean | undefined;
|
|
53987
|
+
is_required?: boolean | undefined;
|
|
53988
|
+
is_visible?: boolean | undefined;
|
|
53989
|
+
active_status?: number | undefined;
|
|
53990
|
+
children_list?: {
|
|
53991
|
+
id?: string | undefined;
|
|
53992
|
+
name?: {
|
|
53993
|
+
zh_cn?: string | undefined;
|
|
53994
|
+
en_us?: string | undefined;
|
|
53995
|
+
} | undefined;
|
|
53996
|
+
description?: {
|
|
53997
|
+
zh_cn?: string | undefined;
|
|
53998
|
+
en_us?: string | undefined;
|
|
53999
|
+
} | undefined;
|
|
54000
|
+
setting?: {
|
|
54001
|
+
object_type?: number | undefined;
|
|
54002
|
+
config?: {
|
|
54003
|
+
options?: {
|
|
54004
|
+
key?: string | undefined;
|
|
54005
|
+
name?: {
|
|
54006
|
+
zh_cn?: string | undefined;
|
|
54007
|
+
en_us?: string | undefined;
|
|
54008
|
+
} | undefined;
|
|
54009
|
+
description?: {
|
|
54010
|
+
zh_cn?: string | undefined;
|
|
54011
|
+
en_us?: string | undefined;
|
|
54012
|
+
} | undefined;
|
|
54013
|
+
active_status?: number | undefined;
|
|
54014
|
+
}[] | undefined;
|
|
54015
|
+
} | undefined;
|
|
54016
|
+
} | undefined;
|
|
54017
|
+
parent_id?: string | undefined;
|
|
54018
|
+
is_customized?: boolean | undefined;
|
|
54019
|
+
is_required?: boolean | undefined;
|
|
54020
|
+
is_visible?: boolean | undefined;
|
|
54021
|
+
active_status?: number | undefined;
|
|
54022
|
+
}[] | undefined;
|
|
54023
|
+
}[] | undefined;
|
|
54024
|
+
}[] | undefined;
|
|
54025
|
+
} | null, void, unknown>;
|
|
54026
|
+
}>;
|
|
54027
|
+
/**
|
|
54028
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=registration_schema&apiName=list&version=v1 click to debug }
|
|
54029
|
+
*
|
|
54030
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=registration_schema&version=v1 document }
|
|
54031
|
+
*/
|
|
54032
|
+
list: (payload?: {
|
|
54033
|
+
params?: {
|
|
54034
|
+
page_size?: number;
|
|
54035
|
+
page_token?: string;
|
|
54036
|
+
scenario?: number;
|
|
54037
|
+
};
|
|
54038
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
54039
|
+
code?: number | undefined;
|
|
54040
|
+
msg?: string | undefined;
|
|
54041
|
+
data?: {
|
|
54042
|
+
items?: {
|
|
54043
|
+
id?: string | undefined;
|
|
54044
|
+
name?: string | undefined;
|
|
54045
|
+
scenarios?: number[] | undefined;
|
|
54046
|
+
objects?: {
|
|
54047
|
+
id?: string | undefined;
|
|
54048
|
+
name?: {
|
|
54049
|
+
zh_cn?: string | undefined;
|
|
54050
|
+
en_us?: string | undefined;
|
|
54051
|
+
} | undefined;
|
|
54052
|
+
description?: {
|
|
54053
|
+
zh_cn?: string | undefined;
|
|
54054
|
+
en_us?: string | undefined;
|
|
54055
|
+
} | undefined;
|
|
54056
|
+
setting?: {
|
|
54057
|
+
object_type?: number | undefined;
|
|
54058
|
+
config?: {
|
|
54059
|
+
options?: {
|
|
54060
|
+
key?: string | undefined;
|
|
54061
|
+
name?: {
|
|
54062
|
+
zh_cn?: string | undefined;
|
|
54063
|
+
en_us?: string | undefined;
|
|
54064
|
+
} | undefined;
|
|
54065
|
+
description?: {
|
|
54066
|
+
zh_cn?: string | undefined;
|
|
54067
|
+
en_us?: string | undefined;
|
|
54068
|
+
} | undefined;
|
|
54069
|
+
active_status?: number | undefined;
|
|
54070
|
+
}[] | undefined;
|
|
54071
|
+
} | undefined;
|
|
54072
|
+
} | undefined;
|
|
54073
|
+
is_customized?: boolean | undefined;
|
|
54074
|
+
is_required?: boolean | undefined;
|
|
54075
|
+
is_visible?: boolean | undefined;
|
|
54076
|
+
active_status?: number | undefined;
|
|
54077
|
+
children_list?: {
|
|
54078
|
+
id?: string | undefined;
|
|
54079
|
+
name?: {
|
|
54080
|
+
zh_cn?: string | undefined;
|
|
54081
|
+
en_us?: string | undefined;
|
|
54082
|
+
} | undefined;
|
|
54083
|
+
description?: {
|
|
54084
|
+
zh_cn?: string | undefined;
|
|
54085
|
+
en_us?: string | undefined;
|
|
54086
|
+
} | undefined;
|
|
54087
|
+
setting?: {
|
|
54088
|
+
object_type?: number | undefined;
|
|
54089
|
+
config?: {
|
|
54090
|
+
options?: {
|
|
54091
|
+
key?: string | undefined;
|
|
54092
|
+
name?: {
|
|
54093
|
+
zh_cn?: string | undefined;
|
|
54094
|
+
en_us?: string | undefined;
|
|
54095
|
+
} | undefined;
|
|
54096
|
+
description?: {
|
|
54097
|
+
zh_cn?: string | undefined;
|
|
54098
|
+
en_us?: string | undefined;
|
|
54099
|
+
} | undefined;
|
|
54100
|
+
active_status?: number | undefined;
|
|
54101
|
+
}[] | undefined;
|
|
54102
|
+
} | undefined;
|
|
54103
|
+
} | undefined;
|
|
54104
|
+
parent_id?: string | undefined;
|
|
54105
|
+
is_customized?: boolean | undefined;
|
|
54106
|
+
is_required?: boolean | undefined;
|
|
54107
|
+
is_visible?: boolean | undefined;
|
|
54108
|
+
active_status?: number | undefined;
|
|
54109
|
+
}[] | undefined;
|
|
54110
|
+
}[] | undefined;
|
|
54111
|
+
}[] | undefined;
|
|
54112
|
+
page_token?: string | undefined;
|
|
54113
|
+
has_more?: boolean | undefined;
|
|
54114
|
+
} | undefined;
|
|
54115
|
+
}>;
|
|
54116
|
+
};
|
|
52788
54117
|
/**
|
|
52789
54118
|
* 简历来源
|
|
52790
54119
|
*/
|
|
@@ -52993,6 +54322,7 @@ declare abstract class Client$1 {
|
|
|
52993
54322
|
} | undefined;
|
|
52994
54323
|
}[] | undefined;
|
|
52995
54324
|
modify_time?: string | undefined;
|
|
54325
|
+
hukou_location_code?: string | undefined;
|
|
52996
54326
|
} | undefined;
|
|
52997
54327
|
education_list?: {
|
|
52998
54328
|
id?: string | undefined;
|
|
@@ -53315,6 +54645,12 @@ declare abstract class Client$1 {
|
|
|
53315
54645
|
registration_time?: number | undefined;
|
|
53316
54646
|
download_url?: string | undefined;
|
|
53317
54647
|
}[] | undefined;
|
|
54648
|
+
registration_list?: {
|
|
54649
|
+
id?: string | undefined;
|
|
54650
|
+
registration_time?: number | undefined;
|
|
54651
|
+
download_url?: string | undefined;
|
|
54652
|
+
scenario?: number | undefined;
|
|
54653
|
+
}[] | undefined;
|
|
53318
54654
|
resume_attachment_id_list?: string[] | undefined;
|
|
53319
54655
|
customized_data_list?: {
|
|
53320
54656
|
object_id?: string | undefined;
|
|
@@ -53415,6 +54751,89 @@ declare abstract class Client$1 {
|
|
|
53415
54751
|
} | undefined;
|
|
53416
54752
|
}>;
|
|
53417
54753
|
};
|
|
54754
|
+
/**
|
|
54755
|
+
* talent_object
|
|
54756
|
+
*/
|
|
54757
|
+
talentObject: {
|
|
54758
|
+
/**
|
|
54759
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=talent_object&apiName=query&version=v1 click to debug }
|
|
54760
|
+
*
|
|
54761
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query document }
|
|
54762
|
+
*
|
|
54763
|
+
* 获取人才字段
|
|
54764
|
+
*
|
|
54765
|
+
* 获取人才字段
|
|
54766
|
+
*/
|
|
54767
|
+
query: (payload?: {}, options?: IRequestOptions$1) => Promise<{
|
|
54768
|
+
code?: number | undefined;
|
|
54769
|
+
msg?: string | undefined;
|
|
54770
|
+
data?: {
|
|
54771
|
+
items?: {
|
|
54772
|
+
id?: string | undefined;
|
|
54773
|
+
name?: {
|
|
54774
|
+
zh_cn?: string | undefined;
|
|
54775
|
+
en_us?: string | undefined;
|
|
54776
|
+
} | undefined;
|
|
54777
|
+
description?: {
|
|
54778
|
+
zh_cn?: string | undefined;
|
|
54779
|
+
en_us?: string | undefined;
|
|
54780
|
+
} | undefined;
|
|
54781
|
+
setting?: {
|
|
54782
|
+
object_type?: number | undefined;
|
|
54783
|
+
config?: {
|
|
54784
|
+
options?: {
|
|
54785
|
+
key?: string | undefined;
|
|
54786
|
+
name?: {
|
|
54787
|
+
zh_cn?: string | undefined;
|
|
54788
|
+
en_us?: string | undefined;
|
|
54789
|
+
} | undefined;
|
|
54790
|
+
description?: {
|
|
54791
|
+
zh_cn?: string | undefined;
|
|
54792
|
+
en_us?: string | undefined;
|
|
54793
|
+
} | undefined;
|
|
54794
|
+
active_status?: number | undefined;
|
|
54795
|
+
}[] | undefined;
|
|
54796
|
+
} | undefined;
|
|
54797
|
+
} | undefined;
|
|
54798
|
+
is_customized?: boolean | undefined;
|
|
54799
|
+
is_required?: boolean | undefined;
|
|
54800
|
+
active_status?: number | undefined;
|
|
54801
|
+
children_list?: {
|
|
54802
|
+
id?: string | undefined;
|
|
54803
|
+
name?: {
|
|
54804
|
+
zh_cn?: string | undefined;
|
|
54805
|
+
en_us?: string | undefined;
|
|
54806
|
+
} | undefined;
|
|
54807
|
+
description?: {
|
|
54808
|
+
zh_cn?: string | undefined;
|
|
54809
|
+
en_us?: string | undefined;
|
|
54810
|
+
} | undefined;
|
|
54811
|
+
setting?: {
|
|
54812
|
+
object_type?: number | undefined;
|
|
54813
|
+
config?: {
|
|
54814
|
+
options?: {
|
|
54815
|
+
key?: string | undefined;
|
|
54816
|
+
name?: {
|
|
54817
|
+
zh_cn?: string | undefined;
|
|
54818
|
+
en_us?: string | undefined;
|
|
54819
|
+
} | undefined;
|
|
54820
|
+
description?: {
|
|
54821
|
+
zh_cn?: string | undefined;
|
|
54822
|
+
en_us?: string | undefined;
|
|
54823
|
+
} | undefined;
|
|
54824
|
+
active_status?: number | undefined;
|
|
54825
|
+
}[] | undefined;
|
|
54826
|
+
} | undefined;
|
|
54827
|
+
} | undefined;
|
|
54828
|
+
parent_id?: string | undefined;
|
|
54829
|
+
is_customized?: boolean | undefined;
|
|
54830
|
+
is_required?: boolean | undefined;
|
|
54831
|
+
active_status?: number | undefined;
|
|
54832
|
+
}[] | undefined;
|
|
54833
|
+
}[] | undefined;
|
|
54834
|
+
} | undefined;
|
|
54835
|
+
}>;
|
|
54836
|
+
};
|
|
53418
54837
|
};
|
|
53419
54838
|
/**
|
|
53420
54839
|
* 实名认证
|
|
@@ -53641,6 +55060,10 @@ declare abstract class Client$1 {
|
|
|
53641
55060
|
download_has_permission_setting?: "all_members" | "not_anyone";
|
|
53642
55061
|
message_has_permission_setting?: "all_members" | "not_anyone";
|
|
53643
55062
|
};
|
|
55063
|
+
urgent_setting?: "only_owner" | "all_members";
|
|
55064
|
+
video_conference_setting?: "only_owner" | "all_members";
|
|
55065
|
+
edit_permission?: "only_owner" | "all_members";
|
|
55066
|
+
chat_tags?: Array<string>;
|
|
53644
55067
|
};
|
|
53645
55068
|
params?: {
|
|
53646
55069
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -53662,6 +55085,8 @@ declare abstract class Client$1 {
|
|
|
53662
55085
|
} | undefined;
|
|
53663
55086
|
owner_id?: string | undefined;
|
|
53664
55087
|
owner_id_type?: string | undefined;
|
|
55088
|
+
urgent_setting?: "all_members" | "only_owner" | undefined;
|
|
55089
|
+
video_conference_setting?: "all_members" | "only_owner" | undefined;
|
|
53665
55090
|
add_member_permission?: string | undefined;
|
|
53666
55091
|
share_card_permission?: string | undefined;
|
|
53667
55092
|
at_all_permission?: string | undefined;
|
|
@@ -53762,6 +55187,8 @@ declare abstract class Client$1 {
|
|
|
53762
55187
|
download_has_permission_setting?: "all_members" | "not_anyone" | undefined;
|
|
53763
55188
|
message_has_permission_setting?: "all_members" | "not_anyone" | undefined;
|
|
53764
55189
|
} | undefined;
|
|
55190
|
+
urgent_setting?: "all_members" | "only_owner" | undefined;
|
|
55191
|
+
video_conference_setting?: "all_members" | "only_owner" | undefined;
|
|
53765
55192
|
} | undefined;
|
|
53766
55193
|
}>;
|
|
53767
55194
|
/**
|
|
@@ -53947,6 +55374,8 @@ declare abstract class Client$1 {
|
|
|
53947
55374
|
message_has_permission_setting?: "all_members" | "not_anyone";
|
|
53948
55375
|
};
|
|
53949
55376
|
chat_type?: string;
|
|
55377
|
+
urgent_setting?: "only_owner" | "all_members";
|
|
55378
|
+
video_conference_setting?: "only_owner" | "all_members";
|
|
53950
55379
|
};
|
|
53951
55380
|
params?: {
|
|
53952
55381
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -54994,7 +56423,7 @@ declare abstract class Client$1 {
|
|
|
54994
56423
|
}>;
|
|
54995
56424
|
};
|
|
54996
56425
|
/**
|
|
54997
|
-
* 消息
|
|
56426
|
+
* 消息 - 消息卡片
|
|
54998
56427
|
*/
|
|
54999
56428
|
message: {
|
|
55000
56429
|
/**
|
|
@@ -55973,80 +57402,6 @@ declare abstract class Client$1 {
|
|
|
55973
57402
|
} | undefined;
|
|
55974
57403
|
}>;
|
|
55975
57404
|
};
|
|
55976
|
-
/**
|
|
55977
|
-
* 特别关注(灰度租户可见)
|
|
55978
|
-
*/
|
|
55979
|
-
specialFocus: {
|
|
55980
|
-
listWithIterator: (payload?: {
|
|
55981
|
-
params?: {
|
|
55982
|
-
member_id_type?: "user_id" | "union_id" | "open_id";
|
|
55983
|
-
page_size?: number;
|
|
55984
|
-
page_token?: string;
|
|
55985
|
-
};
|
|
55986
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
55987
|
-
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
55988
|
-
items?: {
|
|
55989
|
-
id: string;
|
|
55990
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
55991
|
-
}[] | undefined;
|
|
55992
|
-
} | null, void, unknown>;
|
|
55993
|
-
}>;
|
|
55994
|
-
/**
|
|
55995
|
-
* {@link https://open.feishu.cn/api-explorer?project=im&resource=special_focus&apiName=list&version=v1 click to debug }
|
|
55996
|
-
*
|
|
55997
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/special_focus/list document }
|
|
55998
|
-
*
|
|
55999
|
-
* 获取特别关注列表
|
|
56000
|
-
*
|
|
56001
|
-
* 获取用户的特别关注列表。
|
|
56002
|
-
*/
|
|
56003
|
-
list: (payload?: {
|
|
56004
|
-
params?: {
|
|
56005
|
-
member_id_type?: "user_id" | "union_id" | "open_id";
|
|
56006
|
-
page_size?: number;
|
|
56007
|
-
page_token?: string;
|
|
56008
|
-
};
|
|
56009
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
56010
|
-
code?: number | undefined;
|
|
56011
|
-
msg?: string | undefined;
|
|
56012
|
-
data?: {
|
|
56013
|
-
items?: {
|
|
56014
|
-
id: string;
|
|
56015
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
56016
|
-
}[] | undefined;
|
|
56017
|
-
page_token?: string | undefined;
|
|
56018
|
-
has_more?: boolean | undefined;
|
|
56019
|
-
} | undefined;
|
|
56020
|
-
}>;
|
|
56021
|
-
/**
|
|
56022
|
-
* {@link https://open.feishu.cn/api-explorer?project=im&resource=special_focus&apiName=unread&version=v1 click to debug }
|
|
56023
|
-
*
|
|
56024
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/im-v1/special_focus/unread document }
|
|
56025
|
-
*
|
|
56026
|
-
* 获取特别关注未读信息
|
|
56027
|
-
*
|
|
56028
|
-
* 支持按单聊类型和群聊类型获取用户的特别关注未读消息数。
|
|
56029
|
-
*/
|
|
56030
|
-
unread: (payload?: {
|
|
56031
|
-
data?: {
|
|
56032
|
-
id_list?: Array<string>;
|
|
56033
|
-
chat_mode?: "group" | "p2p";
|
|
56034
|
-
};
|
|
56035
|
-
params?: {
|
|
56036
|
-
member_id_type?: "user_id" | "union_id" | "open_id" | "app_id";
|
|
56037
|
-
};
|
|
56038
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
56039
|
-
code?: number | undefined;
|
|
56040
|
-
msg?: string | undefined;
|
|
56041
|
-
data?: {
|
|
56042
|
-
special_focus_unread?: {
|
|
56043
|
-
id: string;
|
|
56044
|
-
id_type?: "user_id" | "union_id" | "open_id" | "app_id" | undefined;
|
|
56045
|
-
unread_count?: string | undefined;
|
|
56046
|
-
}[] | undefined;
|
|
56047
|
-
} | undefined;
|
|
56048
|
-
}>;
|
|
56049
|
-
};
|
|
56050
57405
|
};
|
|
56051
57406
|
/**
|
|
56052
57407
|
* 邮箱
|
|
@@ -56906,6 +58261,7 @@ declare abstract class Client$1 {
|
|
|
56906
58261
|
data?: {
|
|
56907
58262
|
email?: string;
|
|
56908
58263
|
name?: string;
|
|
58264
|
+
geo?: string;
|
|
56909
58265
|
};
|
|
56910
58266
|
}, options?: IRequestOptions$1) => Promise<{
|
|
56911
58267
|
code?: number | undefined;
|
|
@@ -56914,6 +58270,7 @@ declare abstract class Client$1 {
|
|
|
56914
58270
|
public_mailbox_id?: string | undefined;
|
|
56915
58271
|
email?: string | undefined;
|
|
56916
58272
|
name?: string | undefined;
|
|
58273
|
+
geo?: string | undefined;
|
|
56917
58274
|
} | undefined;
|
|
56918
58275
|
}>;
|
|
56919
58276
|
/**
|
|
@@ -56954,10 +58311,13 @@ declare abstract class Client$1 {
|
|
|
56954
58311
|
public_mailbox_id?: string | undefined;
|
|
56955
58312
|
email?: string | undefined;
|
|
56956
58313
|
name?: string | undefined;
|
|
58314
|
+
geo?: string | undefined;
|
|
56957
58315
|
} | undefined;
|
|
56958
58316
|
}>;
|
|
56959
58317
|
listWithIterator: (payload?: {
|
|
56960
58318
|
params?: {
|
|
58319
|
+
user_id?: string;
|
|
58320
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
56961
58321
|
page_token?: string;
|
|
56962
58322
|
page_size?: number;
|
|
56963
58323
|
};
|
|
@@ -56967,6 +58327,7 @@ declare abstract class Client$1 {
|
|
|
56967
58327
|
public_mailbox_id?: string | undefined;
|
|
56968
58328
|
email?: string | undefined;
|
|
56969
58329
|
name?: string | undefined;
|
|
58330
|
+
geo?: string | undefined;
|
|
56970
58331
|
}[] | undefined;
|
|
56971
58332
|
} | null, void, unknown>;
|
|
56972
58333
|
}>;
|
|
@@ -56981,6 +58342,8 @@ declare abstract class Client$1 {
|
|
|
56981
58342
|
*/
|
|
56982
58343
|
list: (payload?: {
|
|
56983
58344
|
params?: {
|
|
58345
|
+
user_id?: string;
|
|
58346
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
56984
58347
|
page_token?: string;
|
|
56985
58348
|
page_size?: number;
|
|
56986
58349
|
};
|
|
@@ -56994,6 +58357,7 @@ declare abstract class Client$1 {
|
|
|
56994
58357
|
public_mailbox_id?: string | undefined;
|
|
56995
58358
|
email?: string | undefined;
|
|
56996
58359
|
name?: string | undefined;
|
|
58360
|
+
geo?: string | undefined;
|
|
56997
58361
|
}[] | undefined;
|
|
56998
58362
|
} | undefined;
|
|
56999
58363
|
}>;
|
|
@@ -57010,6 +58374,7 @@ declare abstract class Client$1 {
|
|
|
57010
58374
|
data?: {
|
|
57011
58375
|
email?: string;
|
|
57012
58376
|
name?: string;
|
|
58377
|
+
geo?: string;
|
|
57013
58378
|
};
|
|
57014
58379
|
path?: {
|
|
57015
58380
|
public_mailbox_id?: string;
|
|
@@ -57021,6 +58386,7 @@ declare abstract class Client$1 {
|
|
|
57021
58386
|
public_mailbox_id?: string | undefined;
|
|
57022
58387
|
email?: string | undefined;
|
|
57023
58388
|
name?: string | undefined;
|
|
58389
|
+
geo?: string | undefined;
|
|
57024
58390
|
} | undefined;
|
|
57025
58391
|
}>;
|
|
57026
58392
|
/**
|
|
@@ -57036,6 +58402,7 @@ declare abstract class Client$1 {
|
|
|
57036
58402
|
data?: {
|
|
57037
58403
|
email?: string;
|
|
57038
58404
|
name?: string;
|
|
58405
|
+
geo?: string;
|
|
57039
58406
|
};
|
|
57040
58407
|
path?: {
|
|
57041
58408
|
public_mailbox_id?: string;
|
|
@@ -57047,6 +58414,7 @@ declare abstract class Client$1 {
|
|
|
57047
58414
|
public_mailbox_id?: string | undefined;
|
|
57048
58415
|
email?: string | undefined;
|
|
57049
58416
|
name?: string | undefined;
|
|
58417
|
+
geo?: string | undefined;
|
|
57050
58418
|
} | undefined;
|
|
57051
58419
|
}>;
|
|
57052
58420
|
};
|
|
@@ -58838,6 +60206,11 @@ declare abstract class Client$1 {
|
|
|
58838
60206
|
};
|
|
58839
60207
|
schema_id?: string;
|
|
58840
60208
|
app_id?: string;
|
|
60209
|
+
connect_type?: number;
|
|
60210
|
+
connector_param?: {
|
|
60211
|
+
callback_user_id_type?: number;
|
|
60212
|
+
callback_endpoint?: string;
|
|
60213
|
+
};
|
|
58841
60214
|
};
|
|
58842
60215
|
}, options?: IRequestOptions$1) => Promise<{
|
|
58843
60216
|
code?: number | undefined;
|
|
@@ -58866,6 +60239,11 @@ declare abstract class Client$1 {
|
|
|
58866
60239
|
} | undefined;
|
|
58867
60240
|
schema_id?: string | undefined;
|
|
58868
60241
|
app_id?: string | undefined;
|
|
60242
|
+
connect_type?: number | undefined;
|
|
60243
|
+
connector_param?: {
|
|
60244
|
+
callback_user_id_type?: number | undefined;
|
|
60245
|
+
callback_endpoint?: string | undefined;
|
|
60246
|
+
} | undefined;
|
|
58869
60247
|
} | undefined;
|
|
58870
60248
|
} | undefined;
|
|
58871
60249
|
}>;
|
|
@@ -58927,6 +60305,11 @@ declare abstract class Client$1 {
|
|
|
58927
60305
|
} | undefined;
|
|
58928
60306
|
schema_id?: string | undefined;
|
|
58929
60307
|
app_id?: string | undefined;
|
|
60308
|
+
connect_type?: number | undefined;
|
|
60309
|
+
connector_param?: {
|
|
60310
|
+
callback_user_id_type?: number | undefined;
|
|
60311
|
+
callback_endpoint?: string | undefined;
|
|
60312
|
+
} | undefined;
|
|
58930
60313
|
} | undefined;
|
|
58931
60314
|
} | undefined;
|
|
58932
60315
|
}>;
|
|
@@ -58961,6 +60344,11 @@ declare abstract class Client$1 {
|
|
|
58961
60344
|
} | undefined;
|
|
58962
60345
|
schema_id?: string | undefined;
|
|
58963
60346
|
app_id?: string | undefined;
|
|
60347
|
+
connect_type?: number | undefined;
|
|
60348
|
+
connector_param?: {
|
|
60349
|
+
callback_user_id_type?: number | undefined;
|
|
60350
|
+
callback_endpoint?: string | undefined;
|
|
60351
|
+
} | undefined;
|
|
58964
60352
|
}[] | undefined;
|
|
58965
60353
|
} | null, void, unknown>;
|
|
58966
60354
|
}>;
|
|
@@ -59008,6 +60396,11 @@ declare abstract class Client$1 {
|
|
|
59008
60396
|
} | undefined;
|
|
59009
60397
|
schema_id?: string | undefined;
|
|
59010
60398
|
app_id?: string | undefined;
|
|
60399
|
+
connect_type?: number | undefined;
|
|
60400
|
+
connector_param?: {
|
|
60401
|
+
callback_user_id_type?: number | undefined;
|
|
60402
|
+
callback_endpoint?: string | undefined;
|
|
60403
|
+
} | undefined;
|
|
59011
60404
|
}[] | undefined;
|
|
59012
60405
|
} | undefined;
|
|
59013
60406
|
}>;
|
|
@@ -59036,6 +60429,10 @@ declare abstract class Client$1 {
|
|
|
59036
60429
|
en_us?: string;
|
|
59037
60430
|
ja_jp?: string;
|
|
59038
60431
|
};
|
|
60432
|
+
connector_param?: {
|
|
60433
|
+
callback_user_id_type?: number;
|
|
60434
|
+
callback_endpoint?: string;
|
|
60435
|
+
};
|
|
59039
60436
|
};
|
|
59040
60437
|
path: {
|
|
59041
60438
|
data_source_id: string;
|
|
@@ -59067,6 +60464,11 @@ declare abstract class Client$1 {
|
|
|
59067
60464
|
} | undefined;
|
|
59068
60465
|
schema_id?: string | undefined;
|
|
59069
60466
|
app_id?: string | undefined;
|
|
60467
|
+
connect_type?: number | undefined;
|
|
60468
|
+
connector_param?: {
|
|
60469
|
+
callback_user_id_type?: number | undefined;
|
|
60470
|
+
callback_endpoint?: string | undefined;
|
|
60471
|
+
} | undefined;
|
|
59070
60472
|
} | undefined;
|
|
59071
60473
|
} | undefined;
|
|
59072
60474
|
}>;
|
|
@@ -59226,7 +60628,7 @@ declare abstract class Client$1 {
|
|
|
59226
60628
|
data: {
|
|
59227
60629
|
properties: Array<{
|
|
59228
60630
|
name: string;
|
|
59229
|
-
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
|
|
60631
|
+
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
|
|
59230
60632
|
is_searchable?: boolean;
|
|
59231
60633
|
is_sortable?: boolean;
|
|
59232
60634
|
is_returnable?: boolean;
|
|
@@ -59240,6 +60642,9 @@ declare abstract class Client$1 {
|
|
|
59240
60642
|
color: "red" | "green" | "blue" | "grey" | "yellow";
|
|
59241
60643
|
text: string;
|
|
59242
60644
|
}>;
|
|
60645
|
+
user_ids?: {
|
|
60646
|
+
id_type: "open_id" | "union_id" | "user_id";
|
|
60647
|
+
};
|
|
59243
60648
|
};
|
|
59244
60649
|
search_options?: {
|
|
59245
60650
|
enable_semantic_match?: boolean;
|
|
@@ -59248,6 +60653,24 @@ declare abstract class Client$1 {
|
|
|
59248
60653
|
enable_number_suffix_match?: boolean;
|
|
59249
60654
|
enable_camel_match?: boolean;
|
|
59250
60655
|
};
|
|
60656
|
+
is_filterable?: boolean;
|
|
60657
|
+
filter_options?: {
|
|
60658
|
+
display_name: string;
|
|
60659
|
+
i18n_display_name?: {
|
|
60660
|
+
zh_cn?: string;
|
|
60661
|
+
en_us?: string;
|
|
60662
|
+
ja_jp?: string;
|
|
60663
|
+
};
|
|
60664
|
+
option_mode?: "single" | "multiple";
|
|
60665
|
+
associated_smart_filter?: "from" | "date";
|
|
60666
|
+
filter_type?: "user" | "time" | "searchable" | "predefine_enum";
|
|
60667
|
+
predefine_enum_values?: Array<{
|
|
60668
|
+
name: string;
|
|
60669
|
+
text: string;
|
|
60670
|
+
}>;
|
|
60671
|
+
enable_client_filter?: boolean;
|
|
60672
|
+
reference_datasource_id?: string;
|
|
60673
|
+
};
|
|
59251
60674
|
}>;
|
|
59252
60675
|
display: {
|
|
59253
60676
|
card_key: "search_common_card";
|
|
@@ -59268,7 +60691,7 @@ declare abstract class Client$1 {
|
|
|
59268
60691
|
schema?: {
|
|
59269
60692
|
properties: Array<{
|
|
59270
60693
|
name: string;
|
|
59271
|
-
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
|
|
60694
|
+
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
|
|
59272
60695
|
is_searchable?: boolean;
|
|
59273
60696
|
is_sortable?: boolean;
|
|
59274
60697
|
is_returnable?: boolean;
|
|
@@ -59282,6 +60705,9 @@ declare abstract class Client$1 {
|
|
|
59282
60705
|
color: "red" | "green" | "blue" | "grey" | "yellow";
|
|
59283
60706
|
text: string;
|
|
59284
60707
|
}>;
|
|
60708
|
+
user_ids?: {
|
|
60709
|
+
id_type: "open_id" | "union_id" | "user_id";
|
|
60710
|
+
};
|
|
59285
60711
|
};
|
|
59286
60712
|
search_options?: {
|
|
59287
60713
|
enable_semantic_match?: boolean;
|
|
@@ -59290,6 +60716,24 @@ declare abstract class Client$1 {
|
|
|
59290
60716
|
enable_number_suffix_match?: boolean;
|
|
59291
60717
|
enable_camel_match?: boolean;
|
|
59292
60718
|
};
|
|
60719
|
+
is_filterable?: boolean;
|
|
60720
|
+
filter_options?: {
|
|
60721
|
+
display_name: string;
|
|
60722
|
+
i18n_display_name?: {
|
|
60723
|
+
zh_cn?: string;
|
|
60724
|
+
en_us?: string;
|
|
60725
|
+
ja_jp?: string;
|
|
60726
|
+
};
|
|
60727
|
+
option_mode?: "single" | "multiple";
|
|
60728
|
+
associated_smart_filter?: "from" | "date";
|
|
60729
|
+
filter_type?: "user" | "time" | "searchable" | "predefine_enum";
|
|
60730
|
+
predefine_enum_values?: Array<{
|
|
60731
|
+
name: string;
|
|
60732
|
+
text: string;
|
|
60733
|
+
}>;
|
|
60734
|
+
enable_client_filter?: boolean;
|
|
60735
|
+
reference_datasource_id?: string;
|
|
60736
|
+
};
|
|
59293
60737
|
}>;
|
|
59294
60738
|
display: {
|
|
59295
60739
|
card_key: "search_common_card";
|
|
@@ -59340,7 +60784,7 @@ declare abstract class Client$1 {
|
|
|
59340
60784
|
schema?: {
|
|
59341
60785
|
properties: Array<{
|
|
59342
60786
|
name: string;
|
|
59343
|
-
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
|
|
60787
|
+
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
|
|
59344
60788
|
is_searchable?: boolean;
|
|
59345
60789
|
is_sortable?: boolean;
|
|
59346
60790
|
is_returnable?: boolean;
|
|
@@ -59354,6 +60798,9 @@ declare abstract class Client$1 {
|
|
|
59354
60798
|
color: "red" | "green" | "blue" | "grey" | "yellow";
|
|
59355
60799
|
text: string;
|
|
59356
60800
|
}>;
|
|
60801
|
+
user_ids?: {
|
|
60802
|
+
id_type: "open_id" | "union_id" | "user_id";
|
|
60803
|
+
};
|
|
59357
60804
|
};
|
|
59358
60805
|
search_options?: {
|
|
59359
60806
|
enable_semantic_match?: boolean;
|
|
@@ -59362,6 +60809,24 @@ declare abstract class Client$1 {
|
|
|
59362
60809
|
enable_number_suffix_match?: boolean;
|
|
59363
60810
|
enable_camel_match?: boolean;
|
|
59364
60811
|
};
|
|
60812
|
+
is_filterable?: boolean;
|
|
60813
|
+
filter_options?: {
|
|
60814
|
+
display_name: string;
|
|
60815
|
+
i18n_display_name?: {
|
|
60816
|
+
zh_cn?: string;
|
|
60817
|
+
en_us?: string;
|
|
60818
|
+
ja_jp?: string;
|
|
60819
|
+
};
|
|
60820
|
+
option_mode?: "single" | "multiple";
|
|
60821
|
+
associated_smart_filter?: "from" | "date";
|
|
60822
|
+
filter_type?: "user" | "time" | "searchable" | "predefine_enum";
|
|
60823
|
+
predefine_enum_values?: Array<{
|
|
60824
|
+
name: string;
|
|
60825
|
+
text: string;
|
|
60826
|
+
}>;
|
|
60827
|
+
enable_client_filter?: boolean;
|
|
60828
|
+
reference_datasource_id?: string;
|
|
60829
|
+
};
|
|
59365
60830
|
}>;
|
|
59366
60831
|
display: {
|
|
59367
60832
|
card_key: "search_common_card";
|
|
@@ -59403,7 +60868,7 @@ declare abstract class Client$1 {
|
|
|
59403
60868
|
schema?: {
|
|
59404
60869
|
properties: Array<{
|
|
59405
60870
|
name: string;
|
|
59406
|
-
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
|
|
60871
|
+
type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
|
|
59407
60872
|
is_searchable?: boolean;
|
|
59408
60873
|
is_sortable?: boolean;
|
|
59409
60874
|
is_returnable?: boolean;
|
|
@@ -59417,6 +60882,9 @@ declare abstract class Client$1 {
|
|
|
59417
60882
|
color: "red" | "green" | "blue" | "grey" | "yellow";
|
|
59418
60883
|
text: string;
|
|
59419
60884
|
}>;
|
|
60885
|
+
user_ids?: {
|
|
60886
|
+
id_type: "open_id" | "union_id" | "user_id";
|
|
60887
|
+
};
|
|
59420
60888
|
};
|
|
59421
60889
|
search_options?: {
|
|
59422
60890
|
enable_semantic_match?: boolean;
|
|
@@ -59425,6 +60893,24 @@ declare abstract class Client$1 {
|
|
|
59425
60893
|
enable_number_suffix_match?: boolean;
|
|
59426
60894
|
enable_camel_match?: boolean;
|
|
59427
60895
|
};
|
|
60896
|
+
is_filterable?: boolean;
|
|
60897
|
+
filter_options?: {
|
|
60898
|
+
display_name: string;
|
|
60899
|
+
i18n_display_name?: {
|
|
60900
|
+
zh_cn?: string;
|
|
60901
|
+
en_us?: string;
|
|
60902
|
+
ja_jp?: string;
|
|
60903
|
+
};
|
|
60904
|
+
option_mode?: "single" | "multiple";
|
|
60905
|
+
associated_smart_filter?: "from" | "date";
|
|
60906
|
+
filter_type?: "user" | "time" | "searchable" | "predefine_enum";
|
|
60907
|
+
predefine_enum_values?: Array<{
|
|
60908
|
+
name: string;
|
|
60909
|
+
text: string;
|
|
60910
|
+
}>;
|
|
60911
|
+
enable_client_filter?: boolean;
|
|
60912
|
+
reference_datasource_id?: string;
|
|
60913
|
+
};
|
|
59428
60914
|
}>;
|
|
59429
60915
|
display: {
|
|
59430
60916
|
card_key: "search_common_card";
|
|
@@ -59938,7 +61424,7 @@ declare abstract class Client$1 {
|
|
|
59938
61424
|
}>;
|
|
59939
61425
|
};
|
|
59940
61426
|
/**
|
|
59941
|
-
*
|
|
61427
|
+
* 工作表
|
|
59942
61428
|
*/
|
|
59943
61429
|
spreadsheetSheet: {
|
|
59944
61430
|
/**
|
|
@@ -62790,6 +64276,7 @@ declare abstract class Client$1 {
|
|
|
62790
64276
|
msg?: string | undefined;
|
|
62791
64277
|
data?: {
|
|
62792
64278
|
disable_inform?: {
|
|
64279
|
+
if_cover_child_scope?: boolean | undefined;
|
|
62793
64280
|
if_inform: boolean;
|
|
62794
64281
|
informed_users?: {
|
|
62795
64282
|
user_id: string;
|
|
@@ -62809,6 +64296,7 @@ declare abstract class Client$1 {
|
|
|
62809
64296
|
data: {
|
|
62810
64297
|
scope_type: number;
|
|
62811
64298
|
disable_inform: {
|
|
64299
|
+
if_cover_child_scope?: boolean;
|
|
62812
64300
|
if_inform: boolean;
|
|
62813
64301
|
informed_users?: Array<{
|
|
62814
64302
|
user_id: string;
|
|
@@ -62852,6 +64340,7 @@ declare abstract class Client$1 {
|
|
|
62852
64340
|
msg?: string | undefined;
|
|
62853
64341
|
data?: {
|
|
62854
64342
|
reserve_form_config: {
|
|
64343
|
+
if_cover_child_scope?: boolean | undefined;
|
|
62855
64344
|
reserve_form: boolean;
|
|
62856
64345
|
notified_users?: {
|
|
62857
64346
|
user_id: string;
|
|
@@ -62886,6 +64375,7 @@ declare abstract class Client$1 {
|
|
|
62886
64375
|
data: {
|
|
62887
64376
|
scope_type: number;
|
|
62888
64377
|
reserve_form_config: {
|
|
64378
|
+
if_cover_child_scope?: boolean | undefined;
|
|
62889
64379
|
reserve_form: boolean;
|
|
62890
64380
|
notified_users?: {
|
|
62891
64381
|
user_id: string;
|
|
@@ -62947,6 +64437,7 @@ declare abstract class Client$1 {
|
|
|
62947
64437
|
}>;
|
|
62948
64438
|
};
|
|
62949
64439
|
time_config?: {
|
|
64440
|
+
if_cover_child_scope?: boolean;
|
|
62950
64441
|
time_switch: number;
|
|
62951
64442
|
days_in_advance?: number;
|
|
62952
64443
|
opening_hour?: string;
|
|
@@ -62955,6 +64446,7 @@ declare abstract class Client$1 {
|
|
|
62955
64446
|
max_duration?: number;
|
|
62956
64447
|
};
|
|
62957
64448
|
reserve_scope_config?: {
|
|
64449
|
+
if_cover_child_scope?: boolean;
|
|
62958
64450
|
allow_all_users?: number;
|
|
62959
64451
|
allow_users?: Array<{
|
|
62960
64452
|
user_id: string;
|
|
@@ -63003,6 +64495,7 @@ declare abstract class Client$1 {
|
|
|
63003
64495
|
}[] | undefined;
|
|
63004
64496
|
} | undefined;
|
|
63005
64497
|
time_config?: {
|
|
64498
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63006
64499
|
time_switch: number;
|
|
63007
64500
|
days_in_advance?: number | undefined;
|
|
63008
64501
|
opening_hour?: string | undefined;
|
|
@@ -63011,6 +64504,7 @@ declare abstract class Client$1 {
|
|
|
63011
64504
|
max_duration?: number | undefined;
|
|
63012
64505
|
} | undefined;
|
|
63013
64506
|
reserve_scope_config?: {
|
|
64507
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63014
64508
|
allow_all_users?: number | undefined;
|
|
63015
64509
|
allow_users?: {
|
|
63016
64510
|
user_id: string;
|
|
@@ -63040,6 +64534,7 @@ declare abstract class Client$1 {
|
|
|
63040
64534
|
}, options?: IRequestOptions$1) => Promise<{
|
|
63041
64535
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
63042
64536
|
room_reservation_list?: {
|
|
64537
|
+
room_id?: string | undefined;
|
|
63043
64538
|
room_name?: string | undefined;
|
|
63044
64539
|
event_title?: string | undefined;
|
|
63045
64540
|
reserver?: string | undefined;
|
|
@@ -63080,6 +64575,7 @@ declare abstract class Client$1 {
|
|
|
63080
64575
|
msg?: string | undefined;
|
|
63081
64576
|
data?: {
|
|
63082
64577
|
room_reservation_list?: {
|
|
64578
|
+
room_id?: string | undefined;
|
|
63083
64579
|
room_name?: string | undefined;
|
|
63084
64580
|
event_title?: string | undefined;
|
|
63085
64581
|
reserver?: string | undefined;
|
|
@@ -63477,6 +64973,7 @@ declare abstract class Client$1 {
|
|
|
63477
64973
|
room_background?: string | undefined;
|
|
63478
64974
|
display_background?: string | undefined;
|
|
63479
64975
|
digital_signage?: {
|
|
64976
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63480
64977
|
enable?: boolean | undefined;
|
|
63481
64978
|
mute?: boolean | undefined;
|
|
63482
64979
|
start_display?: number | undefined;
|
|
@@ -63494,6 +64991,7 @@ declare abstract class Client$1 {
|
|
|
63494
64991
|
}[] | undefined;
|
|
63495
64992
|
} | undefined;
|
|
63496
64993
|
room_box_digital_signage?: {
|
|
64994
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63497
64995
|
enable?: boolean | undefined;
|
|
63498
64996
|
mute?: boolean | undefined;
|
|
63499
64997
|
start_display?: number | undefined;
|
|
@@ -63539,6 +65037,7 @@ declare abstract class Client$1 {
|
|
|
63539
65037
|
room_background?: string;
|
|
63540
65038
|
display_background?: string;
|
|
63541
65039
|
digital_signage?: {
|
|
65040
|
+
if_cover_child_scope?: boolean;
|
|
63542
65041
|
enable?: boolean;
|
|
63543
65042
|
mute?: boolean;
|
|
63544
65043
|
start_display?: number;
|
|
@@ -63556,6 +65055,7 @@ declare abstract class Client$1 {
|
|
|
63556
65055
|
}>;
|
|
63557
65056
|
};
|
|
63558
65057
|
room_box_digital_signage?: {
|
|
65058
|
+
if_cover_child_scope?: boolean;
|
|
63559
65059
|
enable?: boolean;
|
|
63560
65060
|
mute?: boolean;
|
|
63561
65061
|
start_display?: number;
|
|
@@ -63856,6 +65356,7 @@ declare abstract class Client$1 {
|
|
|
63856
65356
|
room_background?: string;
|
|
63857
65357
|
display_background?: string;
|
|
63858
65358
|
digital_signage?: {
|
|
65359
|
+
if_cover_child_scope?: boolean;
|
|
63859
65360
|
enable?: boolean;
|
|
63860
65361
|
mute?: boolean;
|
|
63861
65362
|
start_display?: number;
|
|
@@ -63873,6 +65374,7 @@ declare abstract class Client$1 {
|
|
|
63873
65374
|
}>;
|
|
63874
65375
|
};
|
|
63875
65376
|
room_box_digital_signage?: {
|
|
65377
|
+
if_cover_child_scope?: boolean;
|
|
63876
65378
|
enable?: boolean;
|
|
63877
65379
|
mute?: boolean;
|
|
63878
65380
|
start_display?: number;
|
|
@@ -63935,6 +65437,7 @@ declare abstract class Client$1 {
|
|
|
63935
65437
|
room_background?: string | undefined;
|
|
63936
65438
|
display_background?: string | undefined;
|
|
63937
65439
|
digital_signage?: {
|
|
65440
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63938
65441
|
enable?: boolean | undefined;
|
|
63939
65442
|
mute?: boolean | undefined;
|
|
63940
65443
|
start_display?: number | undefined;
|
|
@@ -63952,6 +65455,7 @@ declare abstract class Client$1 {
|
|
|
63952
65455
|
}[] | undefined;
|
|
63953
65456
|
} | undefined;
|
|
63954
65457
|
room_box_digital_signage?: {
|
|
65458
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63955
65459
|
enable?: boolean | undefined;
|
|
63956
65460
|
mute?: boolean | undefined;
|
|
63957
65461
|
start_display?: number | undefined;
|
|
@@ -63987,6 +65491,7 @@ declare abstract class Client$1 {
|
|
|
63987
65491
|
room_background?: string | undefined;
|
|
63988
65492
|
display_background?: string | undefined;
|
|
63989
65493
|
digital_signage?: {
|
|
65494
|
+
if_cover_child_scope?: boolean | undefined;
|
|
63990
65495
|
enable?: boolean | undefined;
|
|
63991
65496
|
mute?: boolean | undefined;
|
|
63992
65497
|
start_display?: number | undefined;
|
|
@@ -64004,6 +65509,7 @@ declare abstract class Client$1 {
|
|
|
64004
65509
|
}[] | undefined;
|
|
64005
65510
|
} | undefined;
|
|
64006
65511
|
room_box_digital_signage?: {
|
|
65512
|
+
if_cover_child_scope?: boolean | undefined;
|
|
64007
65513
|
enable?: boolean | undefined;
|
|
64008
65514
|
mute?: boolean | undefined;
|
|
64009
65515
|
start_display?: number | undefined;
|
|
@@ -64115,6 +65621,7 @@ declare abstract class Client$1 {
|
|
|
64115
65621
|
getNode: (payload?: {
|
|
64116
65622
|
params: {
|
|
64117
65623
|
token: string;
|
|
65624
|
+
obj_type?: "doc" | "docx" | "sheet" | "mindnote" | "bitable" | "file" | "slides" | "wiki";
|
|
64118
65625
|
};
|
|
64119
65626
|
}, options?: IRequestOptions$1) => Promise<{
|
|
64120
65627
|
code?: number | undefined;
|
|
@@ -65757,7 +67264,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
65757
67264
|
};
|
|
65758
67265
|
};
|
|
65759
67266
|
event_key?: string;
|
|
65760
|
-
timestamp?:
|
|
67267
|
+
timestamp?: number;
|
|
65761
67268
|
}) => Promise<any> | any;
|
|
65762
67269
|
/**
|
|
65763
67270
|
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uIDO24iM4YjLygjN/event/custom-approval-event document }
|
|
@@ -66409,6 +67916,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66409
67916
|
};
|
|
66410
67917
|
};
|
|
66411
67918
|
}>;
|
|
67919
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66412
67920
|
}>;
|
|
66413
67921
|
user_groups?: Array<{
|
|
66414
67922
|
user_group_id: string;
|
|
@@ -66546,6 +68054,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66546
68054
|
};
|
|
66547
68055
|
};
|
|
66548
68056
|
}>;
|
|
68057
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66549
68058
|
}>;
|
|
66550
68059
|
user_groups?: Array<{
|
|
66551
68060
|
user_group_id: string;
|
|
@@ -66644,6 +68153,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66644
68153
|
}>;
|
|
66645
68154
|
job_level_id?: string;
|
|
66646
68155
|
job_family_id?: string;
|
|
68156
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66647
68157
|
};
|
|
66648
68158
|
}) => Promise<any> | any;
|
|
66649
68159
|
/**
|
|
@@ -66734,6 +68244,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66734
68244
|
}>;
|
|
66735
68245
|
job_level_id?: string;
|
|
66736
68246
|
job_family_id?: string;
|
|
68247
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66737
68248
|
};
|
|
66738
68249
|
old_object?: {
|
|
66739
68250
|
department_ids?: Array<string>;
|
|
@@ -66828,6 +68339,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66828
68339
|
}>;
|
|
66829
68340
|
job_level_id?: string;
|
|
66830
68341
|
job_family_id?: string;
|
|
68342
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66831
68343
|
};
|
|
66832
68344
|
old_object?: {
|
|
66833
68345
|
open_id?: string;
|
|
@@ -66898,6 +68410,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
66898
68410
|
}>;
|
|
66899
68411
|
job_level_id?: string;
|
|
66900
68412
|
job_family_id?: string;
|
|
68413
|
+
dotted_line_leader_user_ids?: Array<string>;
|
|
66901
68414
|
};
|
|
66902
68415
|
}) => Promise<any> | any;
|
|
66903
68416
|
/**
|
|
@@ -67133,6 +68646,12 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67133
68646
|
type?: string;
|
|
67134
68647
|
app_id?: string;
|
|
67135
68648
|
job_data_id?: string;
|
|
68649
|
+
employment_id?: string;
|
|
68650
|
+
target_user_id?: {
|
|
68651
|
+
union_id?: string;
|
|
68652
|
+
user_id?: string;
|
|
68653
|
+
open_id?: string;
|
|
68654
|
+
};
|
|
67136
68655
|
}) => Promise<any> | any;
|
|
67137
68656
|
/**
|
|
67138
68657
|
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/events/employed document }
|
|
@@ -67152,6 +68671,12 @@ interface IHandles extends IOtherEventHandles {
|
|
|
67152
68671
|
type?: string;
|
|
67153
68672
|
app_id?: string;
|
|
67154
68673
|
job_data_id?: string;
|
|
68674
|
+
employment_id?: string;
|
|
68675
|
+
target_user_id?: {
|
|
68676
|
+
union_id?: string;
|
|
68677
|
+
user_id?: string;
|
|
68678
|
+
open_id?: string;
|
|
68679
|
+
};
|
|
67155
68680
|
}) => Promise<any> | any;
|
|
67156
68681
|
/**
|
|
67157
68682
|
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/events/updated document }
|
|
@@ -68322,6 +69847,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
68322
69847
|
root_id?: string;
|
|
68323
69848
|
parent_id?: string;
|
|
68324
69849
|
create_time: string;
|
|
69850
|
+
update_time?: string;
|
|
68325
69851
|
chat_id: string;
|
|
68326
69852
|
chat_type: string;
|
|
68327
69853
|
message_type: string;
|
|
@@ -68336,6 +69862,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
68336
69862
|
name: string;
|
|
68337
69863
|
tenant_key?: string;
|
|
68338
69864
|
}>;
|
|
69865
|
+
user_agent?: string;
|
|
68339
69866
|
};
|
|
68340
69867
|
}) => Promise<any> | any;
|
|
68341
69868
|
/**
|
|
@@ -69067,6 +70594,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
69067
70594
|
}>;
|
|
69068
70595
|
};
|
|
69069
70596
|
time_config?: {
|
|
70597
|
+
if_cover_child_scope?: boolean;
|
|
69070
70598
|
time_switch: number;
|
|
69071
70599
|
days_in_advance?: number;
|
|
69072
70600
|
opening_hour?: string;
|