@larksuiteoapi/node-sdk 1.19.0 → 1.20.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/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
  *
@@ -1987,7 +2040,7 @@ declare abstract class Client$1 {
1987
2040
  */
1988
2041
  approval: {
1989
2042
  /**
1990
- * 原生审批定义
2043
+ * 事件
1991
2044
  */
1992
2045
  approval: {
1993
2046
  /**
@@ -2224,6 +2277,59 @@ declare abstract class Client$1 {
2224
2277
  approval_code: string;
2225
2278
  } | undefined;
2226
2279
  }>;
2280
+ /**
2281
+ * {@link https://open.feishu.cn/api-explorer?project=approval&resource=external_approval&apiName=get&version=v4 click to debug }
2282
+ *
2283
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=approval&resource=external_approval&version=v4 document }
2284
+ */
2285
+ get: (payload?: {
2286
+ params?: {
2287
+ user_id_type?: "user_id" | "union_id" | "open_id";
2288
+ };
2289
+ path: {
2290
+ approval_code: string;
2291
+ };
2292
+ }, options?: IRequestOptions$1) => Promise<{
2293
+ code?: number | undefined;
2294
+ msg?: string | undefined;
2295
+ data?: {
2296
+ approval_name: string;
2297
+ approval_code: string;
2298
+ group_code: string;
2299
+ group_name?: string | undefined;
2300
+ description?: string | undefined;
2301
+ external?: {
2302
+ biz_name?: string | undefined;
2303
+ biz_type?: string | undefined;
2304
+ create_link_mobile?: string | undefined;
2305
+ create_link_pc?: string | undefined;
2306
+ support_pc?: boolean | undefined;
2307
+ support_mobile?: boolean | undefined;
2308
+ support_batch_read?: boolean | undefined;
2309
+ enable_mark_readed?: boolean | undefined;
2310
+ enable_quick_operate?: boolean | undefined;
2311
+ action_callback_url?: string | undefined;
2312
+ action_callback_token?: string | undefined;
2313
+ action_callback_key?: string | undefined;
2314
+ allow_batch_operate?: boolean | undefined;
2315
+ exclude_efficiency_statistics?: boolean | undefined;
2316
+ } | undefined;
2317
+ viewers?: {
2318
+ viewer_type?: "TENANT" | "DEPARTMENT" | "USER" | "NONE" | undefined;
2319
+ viewer_user_id?: string | undefined;
2320
+ viewer_department_id?: string | undefined;
2321
+ }[] | undefined;
2322
+ i18n_resources?: {
2323
+ locale: "zh-CN" | "en-US" | "ja-JP";
2324
+ texts: Array<{
2325
+ key: string;
2326
+ value: string;
2327
+ }>;
2328
+ is_default: boolean;
2329
+ }[] | undefined;
2330
+ managers?: string[] | undefined;
2331
+ } | undefined;
2332
+ }>;
2227
2333
  };
2228
2334
  /**
2229
2335
  * 三方审批实例
@@ -3668,6 +3774,8 @@ declare abstract class Client$1 {
3668
3774
  name?: string;
3669
3775
  }>;
3670
3776
  member_ids?: Array<string>;
3777
+ custom_field_ID?: string;
3778
+ custom_field_obj_type?: string;
3671
3779
  };
3672
3780
  }>;
3673
3781
  no_need_punch_members?: Array<{
@@ -3680,8 +3788,14 @@ declare abstract class Client$1 {
3680
3788
  name?: string;
3681
3789
  }>;
3682
3790
  member_ids?: Array<string>;
3791
+ custom_field_ID?: string;
3792
+ custom_field_obj_type?: string;
3683
3793
  };
3684
3794
  }>;
3795
+ save_auto_changes?: boolean;
3796
+ org_change_auto_adjust?: boolean;
3797
+ bind_default_dept_ids?: Array<string>;
3798
+ bind_default_user_ids?: Array<string>;
3685
3799
  };
3686
3800
  operator_id?: string;
3687
3801
  };
@@ -3811,6 +3925,8 @@ declare abstract class Client$1 {
3811
3925
  name?: string | undefined;
3812
3926
  }[] | undefined;
3813
3927
  member_ids?: string[] | undefined;
3928
+ custom_field_ID?: string | undefined;
3929
+ custom_field_obj_type?: string | undefined;
3814
3930
  } | undefined;
3815
3931
  }[] | undefined;
3816
3932
  no_need_punch_members?: {
@@ -3823,8 +3939,14 @@ declare abstract class Client$1 {
3823
3939
  name?: string | undefined;
3824
3940
  }[] | undefined;
3825
3941
  member_ids?: string[] | undefined;
3942
+ custom_field_ID?: string | undefined;
3943
+ custom_field_obj_type?: string | undefined;
3826
3944
  } | undefined;
3827
3945
  }[] | undefined;
3946
+ save_auto_changes?: boolean | undefined;
3947
+ org_change_auto_adjust?: boolean | undefined;
3948
+ bind_default_dept_ids?: string[] | undefined;
3949
+ bind_default_user_ids?: string[] | undefined;
3828
3950
  } | undefined;
3829
3951
  } | undefined;
3830
3952
  }>;
@@ -3983,6 +4105,8 @@ declare abstract class Client$1 {
3983
4105
  name?: string | undefined;
3984
4106
  }[] | undefined;
3985
4107
  member_ids?: string[] | undefined;
4108
+ custom_field_ID?: string | undefined;
4109
+ custom_field_obj_type?: string | undefined;
3986
4110
  } | undefined;
3987
4111
  }[] | undefined;
3988
4112
  no_need_punch_members?: {
@@ -3995,8 +4119,14 @@ declare abstract class Client$1 {
3995
4119
  name?: string | undefined;
3996
4120
  }[] | undefined;
3997
4121
  member_ids?: string[] | undefined;
4122
+ custom_field_ID?: string | undefined;
4123
+ custom_field_obj_type?: string | undefined;
3998
4124
  } | undefined;
3999
4125
  }[] | undefined;
4126
+ save_auto_changes?: boolean | undefined;
4127
+ org_change_auto_adjust?: boolean | undefined;
4128
+ bind_default_dept_ids?: string[] | undefined;
4129
+ bind_default_user_ids?: string[] | undefined;
4000
4130
  } | undefined;
4001
4131
  }>;
4002
4132
  listWithIterator: (payload?: {
@@ -4184,6 +4314,7 @@ declare abstract class Client$1 {
4184
4314
  data: {
4185
4315
  shift_name: string;
4186
4316
  punch_times: number;
4317
+ sub_shift_leader_ids?: Array<string>;
4187
4318
  is_flexible?: boolean;
4188
4319
  flexible_minutes?: number;
4189
4320
  flexible_rule?: Array<{
@@ -4214,6 +4345,7 @@ declare abstract class Client$1 {
4214
4345
  on_overtime: string;
4215
4346
  off_overtime: string;
4216
4347
  }>;
4348
+ allow_punch_approval?: boolean;
4217
4349
  };
4218
4350
  }, options?: IRequestOptions$1) => Promise<{
4219
4351
  code?: number | undefined;
@@ -4223,6 +4355,7 @@ declare abstract class Client$1 {
4223
4355
  shift_id: string;
4224
4356
  shift_name: string;
4225
4357
  punch_times: number;
4358
+ sub_shift_leader_ids?: string[] | undefined;
4226
4359
  is_flexible?: boolean | undefined;
4227
4360
  flexible_minutes?: number | undefined;
4228
4361
  flexible_rule?: {
@@ -4253,6 +4386,7 @@ declare abstract class Client$1 {
4253
4386
  on_overtime: string;
4254
4387
  off_overtime: string;
4255
4388
  }[] | undefined;
4389
+ allow_punch_approval?: boolean | undefined;
4256
4390
  } | undefined;
4257
4391
  } | undefined;
4258
4392
  }>;
@@ -4294,6 +4428,7 @@ declare abstract class Client$1 {
4294
4428
  shift_id: string;
4295
4429
  shift_name: string;
4296
4430
  punch_times: number;
4431
+ sub_shift_leader_ids?: string[] | undefined;
4297
4432
  is_flexible?: boolean | undefined;
4298
4433
  flexible_minutes?: number | undefined;
4299
4434
  flexible_rule?: {
@@ -4324,6 +4459,7 @@ declare abstract class Client$1 {
4324
4459
  on_overtime: string;
4325
4460
  off_overtime: string;
4326
4461
  }[] | undefined;
4462
+ allow_punch_approval?: boolean | undefined;
4327
4463
  } | undefined;
4328
4464
  }>;
4329
4465
  listWithIterator: (payload?: {
@@ -4337,6 +4473,7 @@ declare abstract class Client$1 {
4337
4473
  shift_id: string;
4338
4474
  shift_name: string;
4339
4475
  punch_times: number;
4476
+ sub_shift_leader_ids?: string[] | undefined;
4340
4477
  is_flexible?: boolean | undefined;
4341
4478
  flexible_minutes?: number | undefined;
4342
4479
  flexible_rule?: {
@@ -4367,6 +4504,7 @@ declare abstract class Client$1 {
4367
4504
  on_overtime: string;
4368
4505
  off_overtime: string;
4369
4506
  }[] | undefined;
4507
+ allow_punch_approval?: boolean | undefined;
4370
4508
  }[] | undefined;
4371
4509
  } | null, void, unknown>;
4372
4510
  }>;
@@ -4392,6 +4530,7 @@ declare abstract class Client$1 {
4392
4530
  shift_id: string;
4393
4531
  shift_name: string;
4394
4532
  punch_times: number;
4533
+ sub_shift_leader_ids?: string[] | undefined;
4395
4534
  is_flexible?: boolean | undefined;
4396
4535
  flexible_minutes?: number | undefined;
4397
4536
  flexible_rule?: {
@@ -4422,6 +4561,7 @@ declare abstract class Client$1 {
4422
4561
  on_overtime: string;
4423
4562
  off_overtime: string;
4424
4563
  }[] | undefined;
4564
+ allow_punch_approval?: boolean | undefined;
4425
4565
  }[] | undefined;
4426
4566
  page_token?: string | undefined;
4427
4567
  has_more?: boolean | undefined;
@@ -4447,6 +4587,7 @@ declare abstract class Client$1 {
4447
4587
  shift_id: string;
4448
4588
  shift_name: string;
4449
4589
  punch_times: number;
4590
+ sub_shift_leader_ids?: string[] | undefined;
4450
4591
  is_flexible?: boolean | undefined;
4451
4592
  flexible_minutes?: number | undefined;
4452
4593
  flexible_rule?: {
@@ -4477,6 +4618,7 @@ declare abstract class Client$1 {
4477
4618
  on_overtime: string;
4478
4619
  off_overtime: string;
4479
4620
  }[] | undefined;
4621
+ allow_punch_approval?: boolean | undefined;
4480
4622
  } | undefined;
4481
4623
  }>;
4482
4624
  };
@@ -7832,7 +7974,7 @@ declare abstract class Client$1 {
7832
7974
  disable_sync?: boolean | undefined;
7833
7975
  text?: string | undefined;
7834
7976
  } | undefined;
7835
- ui_type?: string | undefined;
7977
+ 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
7978
  };
7837
7979
  params?: {
7838
7980
  client_token?: string | undefined;
@@ -7846,7 +7988,6 @@ declare abstract class Client$1 {
7846
7988
  msg?: string | undefined;
7847
7989
  data?: {
7848
7990
  field?: {
7849
- field_id?: string | undefined;
7850
7991
  field_name: string;
7851
7992
  type: number;
7852
7993
  property?: {
@@ -7890,7 +8031,8 @@ declare abstract class Client$1 {
7890
8031
  text?: string | undefined;
7891
8032
  } | undefined;
7892
8033
  is_primary?: boolean | undefined;
7893
- ui_type?: string | undefined;
8034
+ field_id?: string | undefined;
8035
+ 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
8036
  is_hidden?: boolean | undefined;
7895
8037
  } | undefined;
7896
8038
  } | undefined;
@@ -7935,7 +8077,6 @@ declare abstract class Client$1 {
7935
8077
  [Symbol.asyncIterator](): AsyncGenerator<{
7936
8078
  total?: number | undefined;
7937
8079
  items?: {
7938
- field_id?: string | undefined;
7939
8080
  field_name: string;
7940
8081
  type: number;
7941
8082
  property?: {
@@ -7979,7 +8120,8 @@ declare abstract class Client$1 {
7979
8120
  text?: string | undefined;
7980
8121
  } | undefined;
7981
8122
  is_primary?: boolean | undefined;
7982
- ui_type?: string | undefined;
8123
+ field_id?: string | undefined;
8124
+ 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
8125
  is_hidden?: boolean | undefined;
7984
8126
  }[] | undefined;
7985
8127
  } | null, void, unknown>;
@@ -8014,7 +8156,6 @@ declare abstract class Client$1 {
8014
8156
  page_token?: string | undefined;
8015
8157
  total?: number | undefined;
8016
8158
  items?: {
8017
- field_id?: string | undefined;
8018
8159
  field_name: string;
8019
8160
  type: number;
8020
8161
  property?: {
@@ -8058,7 +8199,8 @@ declare abstract class Client$1 {
8058
8199
  text?: string | undefined;
8059
8200
  } | undefined;
8060
8201
  is_primary?: boolean | undefined;
8061
- ui_type?: string | undefined;
8202
+ field_id?: string | undefined;
8203
+ 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
8204
  is_hidden?: boolean | undefined;
8063
8205
  }[] | undefined;
8064
8206
  } | undefined;
@@ -8118,7 +8260,7 @@ declare abstract class Client$1 {
8118
8260
  disable_sync?: boolean | undefined;
8119
8261
  text?: string | undefined;
8120
8262
  } | undefined;
8121
- ui_type?: string | undefined;
8263
+ 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
8264
  };
8123
8265
  path: {
8124
8266
  app_token: string;
@@ -8130,7 +8272,6 @@ declare abstract class Client$1 {
8130
8272
  msg?: string | undefined;
8131
8273
  data?: {
8132
8274
  field?: {
8133
- field_id?: string | undefined;
8134
8275
  field_name: string;
8135
8276
  type: number;
8136
8277
  property?: {
@@ -8174,7 +8315,8 @@ declare abstract class Client$1 {
8174
8315
  text?: string | undefined;
8175
8316
  } | undefined;
8176
8317
  is_primary?: boolean | undefined;
8177
- ui_type?: string | undefined;
8318
+ field_id?: string | undefined;
8319
+ 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
8320
  is_hidden?: boolean | undefined;
8179
8321
  } | undefined;
8180
8322
  } | undefined;
@@ -10062,6 +10204,7 @@ declare abstract class Client$1 {
10062
10204
  others_content?: string | undefined;
10063
10205
  }[] | undefined;
10064
10206
  }[] | undefined;
10207
+ approval_reason?: string | undefined;
10065
10208
  }[] | undefined;
10066
10209
  need_notification?: boolean | undefined;
10067
10210
  instance_start_time_admin?: string | undefined;
@@ -10107,12 +10250,14 @@ declare abstract class Client$1 {
10107
10250
  others_content?: string | undefined;
10108
10251
  }[] | undefined;
10109
10252
  }[] | undefined;
10253
+ approval_reason?: string | undefined;
10110
10254
  }[] | undefined;
10111
10255
  } | undefined;
10112
10256
  }>;
10113
10257
  listWithIterator: (payload?: {
10114
10258
  params?: {
10115
10259
  user_id_type?: "user_id" | "union_id" | "open_id";
10260
+ need_resource_customization?: boolean;
10116
10261
  page_token?: string;
10117
10262
  page_size?: number;
10118
10263
  };
@@ -10167,6 +10312,7 @@ declare abstract class Client$1 {
10167
10312
  list: (payload?: {
10168
10313
  params?: {
10169
10314
  user_id_type?: "user_id" | "union_id" | "open_id";
10315
+ need_resource_customization?: boolean;
10170
10316
  page_token?: string;
10171
10317
  page_size?: number;
10172
10318
  };
@@ -10313,10 +10459,19 @@ declare abstract class Client$1 {
10313
10459
  icon_type?: "vc" | "live" | "default";
10314
10460
  description?: string;
10315
10461
  meeting_url?: string;
10462
+ live_link?: string;
10316
10463
  vc_info?: {
10317
10464
  unique_id: string;
10318
10465
  meeting_no: string;
10319
10466
  };
10467
+ meeting_settings?: {
10468
+ owner_id?: string;
10469
+ join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees";
10470
+ assign_hosts?: Array<string>;
10471
+ auto_record?: boolean;
10472
+ open_lobby?: boolean;
10473
+ allow_attendees_start?: boolean;
10474
+ };
10320
10475
  };
10321
10476
  visibility?: "default" | "public" | "private";
10322
10477
  attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
@@ -10340,6 +10495,7 @@ declare abstract class Client$1 {
10340
10495
  };
10341
10496
  params?: {
10342
10497
  idempotency_key?: string;
10498
+ user_id_type?: "user_id" | "union_id" | "open_id";
10343
10499
  };
10344
10500
  path: {
10345
10501
  calendar_id: string;
@@ -10374,6 +10530,14 @@ declare abstract class Client$1 {
10374
10530
  unique_id: string;
10375
10531
  meeting_no: string;
10376
10532
  } | undefined;
10533
+ meeting_settings?: {
10534
+ owner_id?: string | undefined;
10535
+ join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
10536
+ assign_hosts?: string[] | undefined;
10537
+ auto_record?: boolean | undefined;
10538
+ open_lobby?: boolean | undefined;
10539
+ allow_attendees_start?: boolean | undefined;
10540
+ } | undefined;
10377
10541
  } | undefined;
10378
10542
  visibility?: "default" | "private" | "public" | undefined;
10379
10543
  attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
@@ -10437,195 +10601,9 @@ declare abstract class Client$1 {
10437
10601
  * - 当前身份必须对日历有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
10602
  */
10439
10603
  get: (payload?: {
10440
- path: {
10441
- calendar_id: string;
10442
- event_id: string;
10443
- };
10444
- }, options?: IRequestOptions$1) => Promise<{
10445
- code?: number | undefined;
10446
- msg?: string | undefined;
10447
- data?: {
10448
- event?: {
10449
- event_id: string;
10450
- organizer_calendar_id?: string | undefined;
10451
- summary?: string | undefined;
10452
- description?: string | undefined;
10453
- start_time: {
10454
- date?: string;
10455
- timestamp?: string;
10456
- timezone?: string;
10457
- };
10458
- end_time: {
10459
- date?: string;
10460
- timestamp?: string;
10461
- timezone?: string;
10462
- };
10463
- vchat?: {
10464
- vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
10465
- icon_type?: "default" | "vc" | "live" | undefined;
10466
- description?: string | undefined;
10467
- meeting_url?: string | undefined;
10468
- live_link?: string | undefined;
10469
- } | undefined;
10470
- visibility?: "default" | "private" | "public" | undefined;
10471
- attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
10472
- free_busy_status?: "busy" | "free" | undefined;
10473
- location?: {
10474
- name?: string | undefined;
10475
- address?: string | undefined;
10476
- latitude?: number | undefined;
10477
- longitude?: number | undefined;
10478
- } | undefined;
10479
- color?: number | undefined;
10480
- reminders?: {
10481
- minutes?: number | undefined;
10482
- }[] | undefined;
10483
- recurrence?: string | undefined;
10484
- status?: "tentative" | "confirmed" | "cancelled" | undefined;
10485
- is_exception?: boolean | undefined;
10486
- recurring_event_id?: string | undefined;
10487
- create_time?: string | undefined;
10488
- schemas?: {
10489
- ui_name?: string | undefined;
10490
- ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
10491
- app_link?: string | undefined;
10492
- }[] | undefined;
10493
- } | undefined;
10494
- } | undefined;
10495
- }>;
10496
- /**
10497
- * {@link https://open.feishu.cn/api-explorer?project=calendar&resource=calendar.event&apiName=list&version=v4 click to debug }
10498
- *
10499
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/list document }
10500
- *
10501
- * 获取日程列表
10502
- *
10503
- * 该接口用于以当前身份(应用 / 用户)获取日历下的日程列表。;身份由 Header Authorization 的 Token 类型决定。
10504
- *
10505
- * - 当前身份必须对日历有reader、writer或owner权限才会返回日程详细信息(调用[获取日历](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/get)接口,role字段可查看权限)。;;- 仅支持primary、shared和resource类型的日历获取日程列表。;;- page_token 分页拉取存量数据,sync_token 增量同步变更数据;目前仅传anchor_time时,会返回page_token。;;- 为了确保调用方日程同步数据的一致性,在使用sync_token时,不能同时使用start_time和end_time,否则可能造成日程数据缺失。
10506
- */
10507
- list: (payload?: {
10508
10604
  params?: {
10509
- page_size?: number;
10510
- anchor_time?: string;
10511
- page_token?: string;
10512
- sync_token?: string;
10513
- start_time?: string;
10514
- end_time?: string;
10515
- };
10516
- path: {
10517
- calendar_id: string;
10518
- };
10519
- }, options?: IRequestOptions$1) => Promise<{
10520
- code?: number | undefined;
10521
- msg?: string | undefined;
10522
- data?: {
10523
- has_more?: boolean | undefined;
10524
- page_token?: string | undefined;
10525
- sync_token?: string | undefined;
10526
- items?: {
10527
- event_id: string;
10528
- organizer_calendar_id?: string | undefined;
10529
- summary?: string | undefined;
10530
- description?: string | undefined;
10531
- start_time: {
10532
- date?: string;
10533
- timestamp?: string;
10534
- timezone?: string;
10535
- };
10536
- end_time: {
10537
- date?: string;
10538
- timestamp?: string;
10539
- timezone?: string;
10540
- };
10541
- vchat?: {
10542
- vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
10543
- icon_type?: "default" | "vc" | "live" | undefined;
10544
- description?: string | undefined;
10545
- meeting_url?: string | undefined;
10546
- live_link?: string | undefined;
10547
- } | undefined;
10548
- visibility?: "default" | "private" | "public" | undefined;
10549
- attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
10550
- free_busy_status?: "busy" | "free" | undefined;
10551
- location?: {
10552
- name?: string | undefined;
10553
- address?: string | undefined;
10554
- latitude?: number | undefined;
10555
- longitude?: number | undefined;
10556
- } | undefined;
10557
- color?: number | undefined;
10558
- reminders?: {
10559
- minutes?: number | undefined;
10560
- }[] | undefined;
10561
- recurrence?: string | undefined;
10562
- status?: "tentative" | "confirmed" | "cancelled" | undefined;
10563
- is_exception?: boolean | undefined;
10564
- recurring_event_id?: string | undefined;
10565
- create_time?: string | undefined;
10566
- schemas?: {
10567
- ui_name?: string | undefined;
10568
- ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
10569
- app_link?: string | undefined;
10570
- }[] | undefined;
10571
- }[] | undefined;
10572
- } | undefined;
10573
- }>;
10574
- /**
10575
- * {@link https://open.feishu.cn/api-explorer?project=calendar&resource=calendar.event&apiName=patch&version=v4 click to debug }
10576
- *
10577
- * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/patch document }
10578
- *
10579
- * 更新日程
10580
- *
10581
- * 该接口用于以当前身份(应用 / 用户)更新日历上的一个日程。;;身份由 Header Authorization 的 Token 类型决定。
10582
- *
10583
- * 当前身份必须对日历有 writer 或 owner 权限,并且日历的类型只能为 primary 或 shared。;;当前身份为日程组织者时,可修改所有可编辑字段。;;当前身份为日程参与者时,仅可编辑部分字段。(如:visibility, free_busy_status, color, reminders)
10584
- */
10585
- patch: (payload?: {
10586
- data?: {
10587
- summary?: string;
10588
- description?: string;
10589
- need_notification?: boolean;
10590
- start_time?: {
10591
- date?: string;
10592
- timestamp?: string;
10593
- timezone?: string;
10594
- };
10595
- end_time?: {
10596
- date?: string;
10597
- timestamp?: string;
10598
- timezone?: string;
10599
- };
10600
- vchat?: {
10601
- vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
10602
- icon_type?: "vc" | "live" | "default";
10603
- description?: string;
10604
- meeting_url?: string;
10605
- vc_info?: {
10606
- unique_id: string;
10607
- meeting_no: string;
10608
- };
10609
- };
10610
- visibility?: "default" | "public" | "private";
10611
- attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
10612
- free_busy_status?: "busy" | "free";
10613
- location?: {
10614
- name?: string;
10615
- address?: string;
10616
- latitude?: number;
10617
- longitude?: number;
10618
- };
10619
- color?: number;
10620
- reminders?: Array<{
10621
- minutes?: number;
10622
- }>;
10623
- recurrence?: string;
10624
- schemas?: Array<{
10625
- ui_name?: string;
10626
- ui_status?: "hide" | "readonly" | "editable" | "unknown";
10627
- app_link?: string;
10628
- }>;
10605
+ need_meeting_settings?: boolean;
10606
+ user_id_type?: "user_id" | "union_id" | "open_id";
10629
10607
  };
10630
10608
  path: {
10631
10609
  calendar_id: string;
@@ -10640,7 +10618,6 @@ declare abstract class Client$1 {
10640
10618
  organizer_calendar_id?: string | undefined;
10641
10619
  summary?: string | undefined;
10642
10620
  description?: string | undefined;
10643
- need_notification?: boolean | undefined;
10644
10621
  start_time: {
10645
10622
  date?: string;
10646
10623
  timestamp?: string;
@@ -10661,6 +10638,14 @@ declare abstract class Client$1 {
10661
10638
  unique_id: string;
10662
10639
  meeting_no: string;
10663
10640
  } | undefined;
10641
+ meeting_settings?: {
10642
+ owner_id?: string | undefined;
10643
+ join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
10644
+ assign_hosts?: string[] | undefined;
10645
+ auto_record?: boolean | undefined;
10646
+ open_lobby?: boolean | undefined;
10647
+ allow_attendees_start?: boolean | undefined;
10648
+ } | undefined;
10664
10649
  } | undefined;
10665
10650
  visibility?: "default" | "private" | "public" | undefined;
10666
10651
  attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
@@ -10688,36 +10673,165 @@ declare abstract class Client$1 {
10688
10673
  } | undefined;
10689
10674
  } | undefined;
10690
10675
  }>;
10691
- searchWithIterator: (payload?: {
10692
- data: {
10693
- query: string;
10694
- filter?: {
10695
- start_time?: {
10676
+ /**
10677
+ * {@link https://open.feishu.cn/api-explorer?project=calendar&resource=calendar.event&apiName=list&version=v4 click to debug }
10678
+ *
10679
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/list document }
10680
+ *
10681
+ * 获取日程列表
10682
+ *
10683
+ * 该接口用于以当前身份(应用 / 用户)获取日历下的日程列表。;身份由 Header Authorization 的 Token 类型决定。
10684
+ *
10685
+ * - 当前身份必须对日历有reader、writer或owner权限才会返回日程详细信息(调用[获取日历](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar/get)接口,role字段可查看权限)。;;- 仅支持primary、shared和resource类型的日历获取日程列表。;;- page_token 分页拉取存量数据,sync_token 增量同步变更数据;目前仅传anchor_time时,会返回page_token。;;- 为了确保调用方日程同步数据的一致性,在使用sync_token时,不能同时使用start_time和end_time,否则可能造成日程数据缺失。
10686
+ */
10687
+ list: (payload?: {
10688
+ params?: {
10689
+ page_size?: number;
10690
+ anchor_time?: string;
10691
+ page_token?: string;
10692
+ sync_token?: string;
10693
+ start_time?: string;
10694
+ end_time?: string;
10695
+ };
10696
+ path: {
10697
+ calendar_id: string;
10698
+ };
10699
+ }, options?: IRequestOptions$1) => Promise<{
10700
+ code?: number | undefined;
10701
+ msg?: string | undefined;
10702
+ data?: {
10703
+ has_more?: boolean | undefined;
10704
+ page_token?: string | undefined;
10705
+ sync_token?: string | undefined;
10706
+ items?: {
10707
+ event_id: string;
10708
+ organizer_calendar_id?: string | undefined;
10709
+ summary?: string | undefined;
10710
+ description?: string | undefined;
10711
+ start_time: {
10696
10712
  date?: string;
10697
10713
  timestamp?: string;
10698
10714
  timezone?: string;
10699
10715
  };
10700
- end_time?: {
10716
+ end_time: {
10701
10717
  date?: string;
10702
10718
  timestamp?: string;
10703
10719
  timezone?: string;
10704
10720
  };
10705
- user_ids?: Array<string>;
10706
- room_ids?: Array<string>;
10707
- chat_ids?: Array<string>;
10721
+ vchat?: {
10722
+ vc_type?: "unknown" | "third_party" | "vc" | "no_meeting" | "lark_live" | undefined;
10723
+ icon_type?: "default" | "vc" | "live" | undefined;
10724
+ description?: string | undefined;
10725
+ meeting_url?: string | undefined;
10726
+ live_link?: string | undefined;
10727
+ vc_info?: {
10728
+ unique_id: string;
10729
+ meeting_no: string;
10730
+ } | undefined;
10731
+ } | undefined;
10732
+ visibility?: "default" | "private" | "public" | undefined;
10733
+ attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
10734
+ free_busy_status?: "busy" | "free" | undefined;
10735
+ location?: {
10736
+ name?: string | undefined;
10737
+ address?: string | undefined;
10738
+ latitude?: number | undefined;
10739
+ longitude?: number | undefined;
10740
+ } | undefined;
10741
+ color?: number | undefined;
10742
+ reminders?: {
10743
+ minutes?: number | undefined;
10744
+ }[] | undefined;
10745
+ recurrence?: string | undefined;
10746
+ status?: "tentative" | "confirmed" | "cancelled" | undefined;
10747
+ is_exception?: boolean | undefined;
10748
+ recurring_event_id?: string | undefined;
10749
+ create_time?: string | undefined;
10750
+ schemas?: {
10751
+ ui_name?: string | undefined;
10752
+ ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
10753
+ app_link?: string | undefined;
10754
+ }[] | undefined;
10755
+ }[] | undefined;
10756
+ } | undefined;
10757
+ }>;
10758
+ /**
10759
+ * {@link https://open.feishu.cn/api-explorer?project=calendar&resource=calendar.event&apiName=patch&version=v4 click to debug }
10760
+ *
10761
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/calendar-v4/calendar-event/patch document }
10762
+ *
10763
+ * 更新日程
10764
+ *
10765
+ * 该接口用于以当前身份(应用 / 用户)更新日历上的一个日程。;;身份由 Header Authorization 的 Token 类型决定。
10766
+ *
10767
+ * 当前身份必须对日历有 writer 或 owner 权限,并且日历的类型只能为 primary 或 shared。;;当前身份为日程组织者时,可修改所有可编辑字段。;;当前身份为日程参与者时,仅可编辑部分字段。(如:visibility, free_busy_status, color, reminders)
10768
+ */
10769
+ patch: (payload?: {
10770
+ data?: {
10771
+ summary?: string;
10772
+ description?: string;
10773
+ need_notification?: boolean;
10774
+ start_time?: {
10775
+ date?: string;
10776
+ timestamp?: string;
10777
+ timezone?: string;
10708
10778
  };
10779
+ end_time?: {
10780
+ date?: string;
10781
+ timestamp?: string;
10782
+ timezone?: string;
10783
+ };
10784
+ vchat?: {
10785
+ vc_type?: "vc" | "third_party" | "no_meeting" | "lark_live" | "unknown";
10786
+ icon_type?: "vc" | "live" | "default";
10787
+ description?: string;
10788
+ meeting_url?: string;
10789
+ live_link?: string;
10790
+ vc_info?: {
10791
+ unique_id: string;
10792
+ meeting_no: string;
10793
+ };
10794
+ meeting_settings?: {
10795
+ owner_id?: string;
10796
+ join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees";
10797
+ assign_hosts?: Array<string>;
10798
+ auto_record?: boolean;
10799
+ open_lobby?: boolean;
10800
+ allow_attendees_start?: boolean;
10801
+ };
10802
+ };
10803
+ visibility?: "default" | "public" | "private";
10804
+ attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event";
10805
+ free_busy_status?: "busy" | "free";
10806
+ location?: {
10807
+ name?: string;
10808
+ address?: string;
10809
+ latitude?: number;
10810
+ longitude?: number;
10811
+ };
10812
+ color?: number;
10813
+ reminders?: Array<{
10814
+ minutes?: number;
10815
+ }>;
10816
+ recurrence?: string;
10817
+ schemas?: Array<{
10818
+ ui_name?: string;
10819
+ ui_status?: "hide" | "readonly" | "editable" | "unknown";
10820
+ app_link?: string;
10821
+ }>;
10709
10822
  };
10710
10823
  params?: {
10711
10824
  user_id_type?: "user_id" | "union_id" | "open_id";
10712
- page_token?: string;
10713
- page_size?: number;
10714
10825
  };
10715
10826
  path: {
10716
10827
  calendar_id: string;
10828
+ event_id: string;
10717
10829
  };
10718
10830
  }, options?: IRequestOptions$1) => Promise<{
10719
- [Symbol.asyncIterator](): AsyncGenerator<{
10720
- items?: {
10831
+ code?: number | undefined;
10832
+ msg?: string | undefined;
10833
+ data?: {
10834
+ event?: {
10721
10835
  event_id: string;
10722
10836
  organizer_calendar_id?: string | undefined;
10723
10837
  summary?: string | undefined;
@@ -10743,6 +10857,14 @@ declare abstract class Client$1 {
10743
10857
  unique_id: string;
10744
10858
  meeting_no: string;
10745
10859
  } | undefined;
10860
+ meeting_settings?: {
10861
+ owner_id?: string | undefined;
10862
+ join_meeting_permission?: "anyone_can_join" | "only_organization_employees" | "only_event_attendees" | undefined;
10863
+ assign_hosts?: string[] | undefined;
10864
+ auto_record?: boolean | undefined;
10865
+ open_lobby?: boolean | undefined;
10866
+ allow_attendees_start?: boolean | undefined;
10867
+ } | undefined;
10746
10868
  } | undefined;
10747
10869
  visibility?: "default" | "private" | "public" | undefined;
10748
10870
  attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
@@ -10761,11 +10883,76 @@ declare abstract class Client$1 {
10761
10883
  status?: "tentative" | "confirmed" | "cancelled" | undefined;
10762
10884
  is_exception?: boolean | undefined;
10763
10885
  recurring_event_id?: string | undefined;
10886
+ create_time?: string | undefined;
10764
10887
  schemas?: {
10765
10888
  ui_name?: string | undefined;
10766
10889
  ui_status?: "unknown" | "hide" | "readonly" | "editable" | undefined;
10767
10890
  app_link?: string | undefined;
10768
10891
  }[] | undefined;
10892
+ } | undefined;
10893
+ } | undefined;
10894
+ }>;
10895
+ searchWithIterator: (payload?: {
10896
+ data: {
10897
+ query: string;
10898
+ filter?: {
10899
+ start_time?: {
10900
+ date?: string;
10901
+ timestamp?: string;
10902
+ timezone?: string;
10903
+ };
10904
+ end_time?: {
10905
+ date?: string;
10906
+ timestamp?: string;
10907
+ timezone?: string;
10908
+ };
10909
+ user_ids?: Array<string>;
10910
+ room_ids?: Array<string>;
10911
+ chat_ids?: Array<string>;
10912
+ };
10913
+ };
10914
+ params?: {
10915
+ user_id_type?: "user_id" | "union_id" | "open_id";
10916
+ page_token?: string;
10917
+ page_size?: number;
10918
+ };
10919
+ path: {
10920
+ calendar_id: string;
10921
+ };
10922
+ }, options?: IRequestOptions$1) => Promise<{
10923
+ [Symbol.asyncIterator](): AsyncGenerator<{
10924
+ items?: {
10925
+ event_id: string;
10926
+ organizer_calendar_id?: string | undefined;
10927
+ summary?: string | undefined;
10928
+ description?: string | undefined;
10929
+ start_time: {
10930
+ date?: string;
10931
+ timestamp?: string;
10932
+ timezone?: string;
10933
+ };
10934
+ end_time: {
10935
+ date?: string;
10936
+ timestamp?: string;
10937
+ timezone?: string;
10938
+ };
10939
+ visibility?: "default" | "private" | "public" | undefined;
10940
+ attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
10941
+ free_busy_status?: "busy" | "free" | undefined;
10942
+ location?: {
10943
+ name?: string | undefined;
10944
+ address?: string | undefined;
10945
+ latitude?: number | undefined;
10946
+ longitude?: number | undefined;
10947
+ } | undefined;
10948
+ color?: number | undefined;
10949
+ reminders?: {
10950
+ minutes?: number | undefined;
10951
+ }[] | undefined;
10952
+ recurrence?: string | undefined;
10953
+ status?: "tentative" | "confirmed" | "cancelled" | undefined;
10954
+ is_exception?: boolean | undefined;
10955
+ recurring_event_id?: string | undefined;
10769
10956
  }[] | undefined;
10770
10957
  } | null, void, unknown>;
10771
10958
  }>;
@@ -10816,7 +11003,6 @@ declare abstract class Client$1 {
10816
11003
  organizer_calendar_id?: string | undefined;
10817
11004
  summary?: string | undefined;
10818
11005
  description?: string | undefined;
10819
- need_notification?: boolean | undefined;
10820
11006
  start_time: {
10821
11007
  date?: string;
10822
11008
  timestamp?: string;
@@ -10827,17 +11013,6 @@ declare abstract class Client$1 {
10827
11013
  timestamp?: string;
10828
11014
  timezone?: string;
10829
11015
  };
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
11016
  visibility?: "default" | "private" | "public" | undefined;
10842
11017
  attendee_ability?: "none" | "can_see_others" | "can_invite_others" | "can_modify_event" | undefined;
10843
11018
  free_busy_status?: "busy" | "free" | undefined;
@@ -10855,11 +11030,6 @@ declare abstract class Client$1 {
10855
11030
  status?: "tentative" | "confirmed" | "cancelled" | undefined;
10856
11031
  is_exception?: boolean | undefined;
10857
11032
  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
11033
  }[] | undefined;
10864
11034
  page_token?: string | undefined;
10865
11035
  } | undefined;
@@ -12999,6 +13169,80 @@ declare abstract class Client$1 {
12999
13169
  } | undefined;
13000
13170
  }>;
13001
13171
  };
13172
+ /**
13173
+ * job_title
13174
+ */
13175
+ jobTitle: {
13176
+ /**
13177
+ * {@link https://open.feishu.cn/api-explorer?project=contact&resource=job_title&apiName=get&version=v3 click to debug }
13178
+ *
13179
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=contact&resource=job_title&version=v3 document }
13180
+ */
13181
+ get: (payload?: {
13182
+ path?: {
13183
+ job_title_id?: string;
13184
+ };
13185
+ }, options?: IRequestOptions$1) => Promise<{
13186
+ code?: number | undefined;
13187
+ msg?: string | undefined;
13188
+ data?: {
13189
+ job_title?: {
13190
+ job_title_id?: string | undefined;
13191
+ name?: string | undefined;
13192
+ i18n_name?: {
13193
+ locale?: string | undefined;
13194
+ value?: string | undefined;
13195
+ }[] | undefined;
13196
+ status?: boolean | undefined;
13197
+ } | undefined;
13198
+ } | undefined;
13199
+ }>;
13200
+ listWithIterator: (payload?: {
13201
+ params?: {
13202
+ page_size?: number;
13203
+ page_token?: string;
13204
+ };
13205
+ }, options?: IRequestOptions$1) => Promise<{
13206
+ [Symbol.asyncIterator](): AsyncGenerator<{
13207
+ items?: {
13208
+ job_title_id?: string | undefined;
13209
+ name?: string | undefined;
13210
+ i18n_name?: {
13211
+ locale?: string | undefined;
13212
+ value?: string | undefined;
13213
+ }[] | undefined;
13214
+ status?: boolean | undefined;
13215
+ }[] | undefined;
13216
+ } | null, void, unknown>;
13217
+ }>;
13218
+ /**
13219
+ * {@link https://open.feishu.cn/api-explorer?project=contact&resource=job_title&apiName=list&version=v3 click to debug }
13220
+ *
13221
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=contact&resource=job_title&version=v3 document }
13222
+ */
13223
+ list: (payload?: {
13224
+ params?: {
13225
+ page_size?: number;
13226
+ page_token?: string;
13227
+ };
13228
+ }, options?: IRequestOptions$1) => Promise<{
13229
+ code?: number | undefined;
13230
+ msg?: string | undefined;
13231
+ data?: {
13232
+ items?: {
13233
+ job_title_id?: string | undefined;
13234
+ name?: string | undefined;
13235
+ i18n_name?: {
13236
+ locale?: string | undefined;
13237
+ value?: string | undefined;
13238
+ }[] | undefined;
13239
+ status?: boolean | undefined;
13240
+ }[] | undefined;
13241
+ page_token?: string | undefined;
13242
+ has_more?: boolean | undefined;
13243
+ } | undefined;
13244
+ }>;
13245
+ };
13002
13246
  /**
13003
13247
  * 通讯录权限范围
13004
13248
  */
@@ -14686,6 +14930,100 @@ declare abstract class Client$1 {
14686
14930
  } | undefined;
14687
14931
  } | undefined;
14688
14932
  }>;
14933
+ /**
14934
+ * {@link https://open.feishu.cn/api-explorer?project=contact&resource=user&apiName=update_user_id&version=v3 click to debug }
14935
+ *
14936
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update_user_id&project=contact&resource=user&version=v3 document }
14937
+ */
14938
+ updateUserId: (payload?: {
14939
+ data: {
14940
+ new_user_id: string;
14941
+ };
14942
+ params?: {
14943
+ user_id_type?: "user_id" | "union_id" | "open_id";
14944
+ };
14945
+ path: {
14946
+ user_id: string;
14947
+ };
14948
+ }, options?: IRequestOptions$1) => Promise<{
14949
+ code?: number | undefined;
14950
+ msg?: string | undefined;
14951
+ data?: {} | undefined;
14952
+ }>;
14953
+ };
14954
+ /**
14955
+ * work_city
14956
+ */
14957
+ workCity: {
14958
+ /**
14959
+ * {@link https://open.feishu.cn/api-explorer?project=contact&resource=work_city&apiName=get&version=v3 click to debug }
14960
+ *
14961
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=contact&resource=work_city&version=v3 document }
14962
+ */
14963
+ get: (payload?: {
14964
+ path?: {
14965
+ work_city_id?: string;
14966
+ };
14967
+ }, options?: IRequestOptions$1) => Promise<{
14968
+ code?: number | undefined;
14969
+ msg?: string | undefined;
14970
+ data?: {
14971
+ work_city?: {
14972
+ work_city_id?: string | undefined;
14973
+ name?: string | undefined;
14974
+ i18n_name?: {
14975
+ locale?: string | undefined;
14976
+ value?: string | undefined;
14977
+ }[] | undefined;
14978
+ status?: boolean | undefined;
14979
+ } | undefined;
14980
+ } | undefined;
14981
+ }>;
14982
+ listWithIterator: (payload?: {
14983
+ params?: {
14984
+ page_size?: number;
14985
+ page_token?: string;
14986
+ };
14987
+ }, options?: IRequestOptions$1) => Promise<{
14988
+ [Symbol.asyncIterator](): AsyncGenerator<{
14989
+ items?: {
14990
+ work_city_id?: string | undefined;
14991
+ name?: string | undefined;
14992
+ i18n_name?: {
14993
+ locale?: string | undefined;
14994
+ value?: string | undefined;
14995
+ }[] | undefined;
14996
+ status?: boolean | undefined;
14997
+ }[] | undefined;
14998
+ } | null, void, unknown>;
14999
+ }>;
15000
+ /**
15001
+ * {@link https://open.feishu.cn/api-explorer?project=contact&resource=work_city&apiName=list&version=v3 click to debug }
15002
+ *
15003
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=contact&resource=work_city&version=v3 document }
15004
+ */
15005
+ list: (payload?: {
15006
+ params?: {
15007
+ page_size?: number;
15008
+ page_token?: string;
15009
+ };
15010
+ }, options?: IRequestOptions$1) => Promise<{
15011
+ code?: number | undefined;
15012
+ msg?: string | undefined;
15013
+ data?: {
15014
+ items?: {
15015
+ work_city_id?: string | undefined;
15016
+ name?: string | undefined;
15017
+ i18n_name?: {
15018
+ locale?: string | undefined;
15019
+ value?: string | undefined;
15020
+ }[] | undefined;
15021
+ status?: boolean | undefined;
15022
+ }[] | undefined;
15023
+ page_token?: string | undefined;
15024
+ has_more?: boolean | undefined;
15025
+ } | undefined;
15026
+ }>;
14689
15027
  };
14690
15028
  };
14691
15029
  /**
@@ -16393,16 +16731,11 @@ declare abstract class Client$1 {
16393
16731
  data?: {
16394
16732
  seniority_date?: string;
16395
16733
  employee_number?: string;
16396
- effective_time?: string;
16397
- expiration_time?: string;
16398
16734
  employment_type?: {
16399
16735
  enum_name: string;
16400
16736
  };
16401
16737
  person_id?: string;
16402
16738
  primary_employment?: boolean;
16403
- employment_status?: {
16404
- enum_name: string;
16405
- };
16406
16739
  custom_fields?: Array<{
16407
16740
  field_name: string;
16408
16741
  value: string;
@@ -16968,7 +17301,7 @@ declare abstract class Client$1 {
16968
17301
  effective_time: string;
16969
17302
  expiration_time?: string;
16970
17303
  job_family_id?: string;
16971
- assignment_start_reason?: {
17304
+ assignment_start_reason: {
16972
17305
  enum_name: string;
16973
17306
  };
16974
17307
  probation_expected_end_date?: string;
@@ -17853,6 +18186,7 @@ declare abstract class Client$1 {
17853
18186
  granting_quantity: string;
17854
18187
  granting_unit: number;
17855
18188
  effective_date: string;
18189
+ expiration_date?: string;
17856
18190
  reason: Array<{
17857
18191
  lang: string;
17858
18192
  value: string;
@@ -20529,8 +20863,10 @@ declare abstract class Client$1 {
20529
20863
  fields: Array<number>;
20530
20864
  };
20531
20865
  update_table_property?: {
20532
- column_width: number;
20533
- column_index: number;
20866
+ column_width?: number;
20867
+ column_index?: number;
20868
+ header_row?: boolean;
20869
+ header_column?: boolean;
20534
20870
  };
20535
20871
  insert_table_row?: {
20536
20872
  row_index: number;
@@ -20567,6 +20903,9 @@ declare abstract class Client$1 {
20567
20903
  };
20568
20904
  replace_image?: {
20569
20905
  token: string;
20906
+ width?: number;
20907
+ height?: number;
20908
+ align?: number;
20570
20909
  };
20571
20910
  replace_file?: {
20572
20911
  token: string;
@@ -23007,6 +23346,7 @@ declare abstract class Client$1 {
23007
23346
  width?: number | undefined;
23008
23347
  height?: number | undefined;
23009
23348
  token?: string | undefined;
23349
+ align?: number | undefined;
23010
23350
  } | undefined;
23011
23351
  isv?: {
23012
23352
  component_id?: string | undefined;
@@ -23035,6 +23375,8 @@ declare abstract class Client$1 {
23035
23375
  row_span?: number;
23036
23376
  col_span?: number;
23037
23377
  }>;
23378
+ header_row?: boolean;
23379
+ header_column?: boolean;
23038
23380
  };
23039
23381
  } | undefined;
23040
23382
  table_cell?: {} | undefined;
@@ -25687,6 +26029,7 @@ declare abstract class Client$1 {
25687
26029
  width?: number | undefined;
25688
26030
  height?: number | undefined;
25689
26031
  token?: string | undefined;
26032
+ align?: number | undefined;
25690
26033
  } | undefined;
25691
26034
  isv?: {
25692
26035
  component_id?: string | undefined;
@@ -25713,6 +26056,8 @@ declare abstract class Client$1 {
25713
26056
  row_span?: number;
25714
26057
  col_span?: number;
25715
26058
  }>;
26059
+ header_row?: boolean;
26060
+ header_column?: boolean;
25716
26061
  };
25717
26062
  } | undefined;
25718
26063
  table_cell?: {} | undefined;
@@ -28345,6 +28690,7 @@ declare abstract class Client$1 {
28345
28690
  width?: number | undefined;
28346
28691
  height?: number | undefined;
28347
28692
  token?: string | undefined;
28693
+ align?: number | undefined;
28348
28694
  } | undefined;
28349
28695
  isv?: {
28350
28696
  component_id?: string | undefined;
@@ -28371,6 +28717,8 @@ declare abstract class Client$1 {
28371
28717
  row_span?: number;
28372
28718
  col_span?: number;
28373
28719
  }>;
28720
+ header_row?: boolean;
28721
+ header_column?: boolean;
28374
28722
  };
28375
28723
  } | undefined;
28376
28724
  table_cell?: {} | undefined;
@@ -31018,6 +31366,7 @@ declare abstract class Client$1 {
31018
31366
  width?: number | undefined;
31019
31367
  height?: number | undefined;
31020
31368
  token?: string | undefined;
31369
+ align?: number | undefined;
31021
31370
  } | undefined;
31022
31371
  isv?: {
31023
31372
  component_id?: string | undefined;
@@ -31044,6 +31393,8 @@ declare abstract class Client$1 {
31044
31393
  row_span?: number;
31045
31394
  col_span?: number;
31046
31395
  }>;
31396
+ header_row?: boolean;
31397
+ header_column?: boolean;
31047
31398
  };
31048
31399
  } | undefined;
31049
31400
  table_cell?: {} | undefined;
@@ -31526,8 +31877,10 @@ declare abstract class Client$1 {
31526
31877
  fields: Array<number>;
31527
31878
  };
31528
31879
  update_table_property?: {
31529
- column_width: number;
31530
- column_index: number;
31880
+ column_width?: number;
31881
+ column_index?: number;
31882
+ header_row?: boolean;
31883
+ header_column?: boolean;
31531
31884
  };
31532
31885
  insert_table_row?: {
31533
31886
  row_index: number;
@@ -31564,6 +31917,9 @@ declare abstract class Client$1 {
31564
31917
  };
31565
31918
  replace_image?: {
31566
31919
  token: string;
31920
+ width?: number;
31921
+ height?: number;
31922
+ align?: number;
31567
31923
  };
31568
31924
  replace_file?: {
31569
31925
  token: string;
@@ -33999,6 +34355,7 @@ declare abstract class Client$1 {
33999
34355
  width?: number | undefined;
34000
34356
  height?: number | undefined;
34001
34357
  token?: string | undefined;
34358
+ align?: number | undefined;
34002
34359
  } | undefined;
34003
34360
  isv?: {
34004
34361
  component_id?: string | undefined;
@@ -34027,6 +34384,8 @@ declare abstract class Client$1 {
34027
34384
  row_span?: number;
34028
34385
  col_span?: number;
34029
34386
  }>;
34387
+ header_row?: boolean;
34388
+ header_column?: boolean;
34030
34389
  };
34031
34390
  } | undefined;
34032
34391
  table_cell?: {} | undefined;
@@ -36495,7 +36854,9 @@ declare abstract class Client$1 {
36495
36854
  url: string;
36496
36855
  };
36497
36856
  };
36498
- image?: {};
36857
+ image?: {
36858
+ align?: number;
36859
+ };
36499
36860
  isv?: {};
36500
36861
  add_ons?: {
36501
36862
  component_id?: string;
@@ -36515,6 +36876,8 @@ declare abstract class Client$1 {
36515
36876
  row_span?: number;
36516
36877
  col_span?: number;
36517
36878
  }>;
36879
+ header_row?: boolean;
36880
+ header_column?: boolean;
36518
36881
  };
36519
36882
  };
36520
36883
  quote_container?: {};
@@ -38833,6 +39196,7 @@ declare abstract class Client$1 {
38833
39196
  width?: number | undefined;
38834
39197
  height?: number | undefined;
38835
39198
  token?: string | undefined;
39199
+ align?: number | undefined;
38836
39200
  } | undefined;
38837
39201
  isv?: {
38838
39202
  component_id?: string | undefined;
@@ -38861,6 +39225,8 @@ declare abstract class Client$1 {
38861
39225
  row_span?: number;
38862
39226
  col_span?: number;
38863
39227
  }>;
39228
+ header_row?: boolean;
39229
+ header_column?: boolean;
38864
39230
  };
38865
39231
  } | undefined;
38866
39232
  table_cell?: {} | undefined;
@@ -41500,6 +41866,7 @@ declare abstract class Client$1 {
41500
41866
  width?: number | undefined;
41501
41867
  height?: number | undefined;
41502
41868
  token?: string | undefined;
41869
+ align?: number | undefined;
41503
41870
  } | undefined;
41504
41871
  isv?: {
41505
41872
  component_id?: string | undefined;
@@ -41526,6 +41893,8 @@ declare abstract class Client$1 {
41526
41893
  row_span?: number;
41527
41894
  col_span?: number;
41528
41895
  }>;
41896
+ header_row?: boolean;
41897
+ header_column?: boolean;
41529
41898
  };
41530
41899
  } | undefined;
41531
41900
  table_cell?: {} | undefined;
@@ -44174,6 +44543,7 @@ declare abstract class Client$1 {
44174
44543
  width?: number | undefined;
44175
44544
  height?: number | undefined;
44176
44545
  token?: string | undefined;
44546
+ align?: number | undefined;
44177
44547
  } | undefined;
44178
44548
  isv?: {
44179
44549
  component_id?: string | undefined;
@@ -44200,6 +44570,8 @@ declare abstract class Client$1 {
44200
44570
  row_span?: number;
44201
44571
  col_span?: number;
44202
44572
  }>;
44573
+ header_row?: boolean;
44574
+ header_column?: boolean;
44203
44575
  };
44204
44576
  } | undefined;
44205
44577
  table_cell?: {} | undefined;
@@ -45170,6 +45542,9 @@ declare abstract class Client$1 {
45170
45542
  value: string;
45171
45543
  }>;
45172
45544
  };
45545
+ params?: {
45546
+ user_id_type?: "user_id" | "union_id" | "open_id";
45547
+ };
45173
45548
  path?: {
45174
45549
  file_token?: string;
45175
45550
  };
@@ -45187,6 +45562,9 @@ declare abstract class Client$1 {
45187
45562
  target_type: string;
45188
45563
  target_token: string;
45189
45564
  } | undefined;
45565
+ created_time?: string | undefined;
45566
+ modified_time?: string | undefined;
45567
+ owner_id?: string | undefined;
45190
45568
  } | undefined;
45191
45569
  } | undefined;
45192
45570
  }>;
@@ -45227,6 +45605,9 @@ declare abstract class Client$1 {
45227
45605
  refer_type: "file" | "docx" | "bitable" | "doc" | "sheet" | "mindnote";
45228
45606
  };
45229
45607
  };
45608
+ params?: {
45609
+ user_id_type?: "user_id" | "union_id" | "open_id";
45610
+ };
45230
45611
  }, options?: IRequestOptions$1) => Promise<{
45231
45612
  code?: number | undefined;
45232
45613
  msg?: string | undefined;
@@ -45241,6 +45622,9 @@ declare abstract class Client$1 {
45241
45622
  target_type: string;
45242
45623
  target_token: string;
45243
45624
  } | undefined;
45625
+ created_time?: string | undefined;
45626
+ modified_time?: string | undefined;
45627
+ owner_id?: string | undefined;
45244
45628
  } | undefined;
45245
45629
  } | undefined;
45246
45630
  }>;
@@ -45271,6 +45655,27 @@ declare abstract class Client$1 {
45271
45655
  task_id?: string | undefined;
45272
45656
  } | undefined;
45273
45657
  }>;
45658
+ /**
45659
+ * {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=delete_subscribe&version=v1 click to debug }
45660
+ *
45661
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/delete_subscribe document }
45662
+ *
45663
+ * 取消云文档事件订阅情况
45664
+ *
45665
+ * 该接口**仅支持文档拥有者**取消订阅自己文档的通知事件,可订阅的文档类型为**旧版文档**、**新版文档**、**电子表格**和**多维表格**。在调用该接口之前请确保正确[配置事件回调网址和订阅事件类型](https://open.feishu.cn/document/ukTMukTMukTM/uUTNz4SN1MjL1UzM#2eb3504a),事件类型参考[事件列表](https://open.feishu.cn/document/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。
45666
+ */
45667
+ deleteSubscribe: (payload?: {
45668
+ params: {
45669
+ file_type: "doc" | "docx" | "sheet" | "bitable" | "file";
45670
+ };
45671
+ path: {
45672
+ file_token: string;
45673
+ };
45674
+ }, options?: IRequestOptions$1) => Promise<{
45675
+ code?: number | undefined;
45676
+ msg?: string | undefined;
45677
+ data?: {} | undefined;
45678
+ }>;
45274
45679
  /**
45275
45680
  * {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=download&version=v1 click to debug }
45276
45681
  *
@@ -45289,11 +45694,35 @@ declare abstract class Client$1 {
45289
45694
  }, options?: IRequestOptions$1) => Promise<{
45290
45695
  writeFile: (filePath: string) => Promise<unknown>;
45291
45696
  }>;
45697
+ /**
45698
+ * {@link https://open.feishu.cn/api-explorer?project=drive&resource=file&apiName=get_subscribe&version=v1 click to debug }
45699
+ *
45700
+ * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/drive-v1/file/get_subscribe document }
45701
+ *
45702
+ * 查询云文档事件订阅状态
45703
+ *
45704
+ * 该接口**仅支持文档拥有者**查询自己文档的订阅状态,可订阅的文档类型为**旧版文档**、**新版文档**、**电子表格**和**多维表格**。在调用该接口之前请确保正确[配置事件回调网址和订阅事件类型](https://open.feishu.cn/document/ukTMukTMukTM/uUTNz4SN1MjL1UzM#2eb3504a),事件类型参考[事件列表](https://open.feishu.cn/document/ukTMukTMukTM/uYDNxYjL2QTM24iN0EjN/event-list)。
45705
+ */
45706
+ getSubscribe: (payload?: {
45707
+ params: {
45708
+ file_type: "doc" | "docx" | "sheet" | "bitable" | "file";
45709
+ };
45710
+ path: {
45711
+ file_token: string;
45712
+ };
45713
+ }, options?: IRequestOptions$1) => Promise<{
45714
+ code?: number | undefined;
45715
+ msg?: string | undefined;
45716
+ data?: {} | undefined;
45717
+ }>;
45292
45718
  listWithIterator: (payload?: {
45293
45719
  params?: {
45294
45720
  page_size?: number;
45295
45721
  page_token?: string;
45296
45722
  folder_token?: string;
45723
+ order_by?: "EditedTime" | "CreatedTime";
45724
+ direction?: "ASC" | "DESC";
45725
+ user_id_type?: "user_id" | "union_id" | "open_id";
45297
45726
  };
45298
45727
  }, options?: IRequestOptions$1) => Promise<{
45299
45728
  [Symbol.asyncIterator](): AsyncGenerator<{
@@ -45307,6 +45736,9 @@ declare abstract class Client$1 {
45307
45736
  target_type: string;
45308
45737
  target_token: string;
45309
45738
  } | undefined;
45739
+ created_time?: string | undefined;
45740
+ modified_time?: string | undefined;
45741
+ owner_id?: string | undefined;
45310
45742
  }[] | undefined;
45311
45743
  } | null, void, unknown>;
45312
45744
  }>;
@@ -45324,6 +45756,9 @@ declare abstract class Client$1 {
45324
45756
  page_size?: number;
45325
45757
  page_token?: string;
45326
45758
  folder_token?: string;
45759
+ order_by?: "EditedTime" | "CreatedTime";
45760
+ direction?: "ASC" | "DESC";
45761
+ user_id_type?: "user_id" | "union_id" | "open_id";
45327
45762
  };
45328
45763
  }, options?: IRequestOptions$1) => Promise<{
45329
45764
  code?: number | undefined;
@@ -45339,6 +45774,9 @@ declare abstract class Client$1 {
45339
45774
  target_type: string;
45340
45775
  target_token: string;
45341
45776
  } | undefined;
45777
+ created_time?: string | undefined;
45778
+ modified_time?: string | undefined;
45779
+ owner_id?: string | undefined;
45342
45780
  }[] | undefined;
45343
45781
  next_page_token?: string | undefined;
45344
45782
  has_more?: boolean | undefined;
@@ -45663,8 +46101,8 @@ declare abstract class Client$1 {
45663
46101
  create_time?: string;
45664
46102
  update_time?: string;
45665
46103
  status?: "0" | "1" | "2";
45666
- obj_type?: "doc" | "sheet" | "bitable" | "docx";
45667
- parent_type?: "doc" | "sheet" | "bitable" | "docx";
46104
+ obj_type?: "docx";
46105
+ parent_type?: "docx";
45668
46106
  };
45669
46107
  params?: {
45670
46108
  user_id_type?: "user_id" | "union_id" | "open_id";
@@ -45684,8 +46122,8 @@ declare abstract class Client$1 {
45684
46122
  create_time?: string | undefined;
45685
46123
  update_time?: string | undefined;
45686
46124
  status?: "0" | "1" | "2" | undefined;
45687
- obj_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
45688
- parent_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
46125
+ obj_type?: "docx" | undefined;
46126
+ parent_type?: "docx" | undefined;
45689
46127
  } | undefined;
45690
46128
  }>;
45691
46129
  /**
@@ -45699,7 +46137,7 @@ declare abstract class Client$1 {
45699
46137
  */
45700
46138
  delete: (payload?: {
45701
46139
  params: {
45702
- obj_type: "doc" | "sheet" | "bitable" | "docx";
46140
+ obj_type: "docx";
45703
46141
  user_id_type?: "open_id" | "union_id" | "user_id";
45704
46142
  };
45705
46143
  path: {
@@ -45722,7 +46160,7 @@ declare abstract class Client$1 {
45722
46160
  */
45723
46161
  get: (payload?: {
45724
46162
  params: {
45725
- obj_type: "doc" | "sheet" | "bitable" | "docx";
46163
+ obj_type: "docx";
45726
46164
  user_id_type?: "open_id" | "union_id" | "user_id";
45727
46165
  };
45728
46166
  path: {
@@ -45741,15 +46179,15 @@ declare abstract class Client$1 {
45741
46179
  create_time?: string | undefined;
45742
46180
  update_time?: string | undefined;
45743
46181
  status?: "0" | "1" | "2" | undefined;
45744
- obj_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
45745
- parent_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
46182
+ obj_type?: "docx" | undefined;
46183
+ parent_type?: "docx" | undefined;
45746
46184
  } | undefined;
45747
46185
  }>;
45748
46186
  listWithIterator: (payload?: {
45749
46187
  params: {
45750
46188
  page_size: number;
45751
46189
  page_token?: string;
45752
- obj_type: "doc" | "sheet" | "bitable" | "docx";
46190
+ obj_type: "docx";
45753
46191
  user_id_type?: "open_id" | "union_id" | "user_id";
45754
46192
  };
45755
46193
  path: {
@@ -45766,8 +46204,8 @@ declare abstract class Client$1 {
45766
46204
  create_time?: string | undefined;
45767
46205
  update_time?: string | undefined;
45768
46206
  status?: "0" | "1" | "2" | undefined;
45769
- obj_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
45770
- parent_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
46207
+ obj_type?: "docx" | undefined;
46208
+ parent_type?: "docx" | undefined;
45771
46209
  }[] | undefined;
45772
46210
  } | null, void, unknown>;
45773
46211
  }>;
@@ -45784,7 +46222,7 @@ declare abstract class Client$1 {
45784
46222
  params: {
45785
46223
  page_size: number;
45786
46224
  page_token?: string;
45787
- obj_type: "doc" | "sheet" | "bitable" | "docx";
46225
+ obj_type: "docx";
45788
46226
  user_id_type?: "open_id" | "union_id" | "user_id";
45789
46227
  };
45790
46228
  path: {
@@ -45803,8 +46241,8 @@ declare abstract class Client$1 {
45803
46241
  create_time?: string | undefined;
45804
46242
  update_time?: string | undefined;
45805
46243
  status?: "0" | "1" | "2" | undefined;
45806
- obj_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
45807
- parent_type?: "docx" | "doc" | "sheet" | "bitable" | undefined;
46244
+ obj_type?: "docx" | undefined;
46245
+ parent_type?: "docx" | undefined;
45808
46246
  }[] | undefined;
45809
46247
  page_token?: string | undefined;
45810
46248
  has_more?: boolean | undefined;
@@ -46250,6 +46688,7 @@ declare abstract class Client$1 {
46250
46688
  type: "doc" | "sheet" | "file" | "wiki" | "bitable" | "docx" | "mindnote" | "minutes";
46251
46689
  need_notification?: boolean;
46252
46690
  remove_old_owner?: boolean;
46691
+ stay_put?: boolean;
46253
46692
  };
46254
46693
  path: {
46255
46694
  token: string;
@@ -50183,6 +50622,8 @@ declare abstract class Client$1 {
50183
50622
  job_attribute?: number;
50184
50623
  expiry_timestamp?: string;
50185
50624
  interview_registration_schema_id?: string;
50625
+ onboard_registration_schema_id?: string;
50626
+ target_major_id_list?: Array<string>;
50186
50627
  };
50187
50628
  params?: {
50188
50629
  user_id_type?: "user_id" | "union_id" | "open_id";
@@ -50315,6 +50756,11 @@ declare abstract class Client$1 {
50315
50756
  create_timestamp?: string | undefined;
50316
50757
  update_timestamp?: string | undefined;
50317
50758
  expiry_timestamp?: string | undefined;
50759
+ target_major_list?: {
50760
+ id?: string | undefined;
50761
+ zh_name?: string | undefined;
50762
+ en_name?: string | undefined;
50763
+ }[] | undefined;
50318
50764
  } | undefined;
50319
50765
  job_manager?: {
50320
50766
  id?: string | undefined;
@@ -50326,6 +50772,15 @@ declare abstract class Client$1 {
50326
50772
  schema_id?: string | undefined;
50327
50773
  name?: string | undefined;
50328
50774
  } | undefined;
50775
+ onboard_registration_schema_info?: {
50776
+ schema_id?: string | undefined;
50777
+ name?: string | undefined;
50778
+ } | undefined;
50779
+ target_major_list?: {
50780
+ id?: string | undefined;
50781
+ zh_name?: string | undefined;
50782
+ en_name?: string | undefined;
50783
+ }[] | undefined;
50329
50784
  } | undefined;
50330
50785
  }>;
50331
50786
  /**
@@ -50373,6 +50828,7 @@ declare abstract class Client$1 {
50373
50828
  address_id_list?: Array<string>;
50374
50829
  job_attribute?: number;
50375
50830
  expiry_timestamp?: string;
50831
+ target_major_id_list?: Array<string>;
50376
50832
  };
50377
50833
  params?: {
50378
50834
  user_id_type?: "user_id" | "union_id" | "open_id";
@@ -50508,6 +50964,11 @@ declare abstract class Client$1 {
50508
50964
  create_timestamp?: string | undefined;
50509
50965
  update_timestamp?: string | undefined;
50510
50966
  expiry_timestamp?: string | undefined;
50967
+ target_major_list?: {
50968
+ id?: string | undefined;
50969
+ zh_name?: string | undefined;
50970
+ en_name?: string | undefined;
50971
+ }[] | undefined;
50511
50972
  } | undefined;
50512
50973
  job_manager?: {
50513
50974
  id?: string | undefined;
@@ -50519,6 +50980,15 @@ declare abstract class Client$1 {
50519
50980
  schema_id?: string | undefined;
50520
50981
  name?: string | undefined;
50521
50982
  } | undefined;
50983
+ onboard_registration_schema_info?: {
50984
+ schema_id?: string | undefined;
50985
+ name?: string | undefined;
50986
+ } | undefined;
50987
+ target_major_list?: {
50988
+ id?: string | undefined;
50989
+ zh_name?: string | undefined;
50990
+ en_name?: string | undefined;
50991
+ }[] | undefined;
50522
50992
  } | undefined;
50523
50993
  }>;
50524
50994
  /**
@@ -50588,7 +51058,11 @@ declare abstract class Client$1 {
50588
51058
  en_us?: string | undefined;
50589
51059
  } | undefined;
50590
51060
  }[] | undefined;
50591
- interview_registration_schema?: {
51061
+ interview_registration?: {
51062
+ schema_id?: string | undefined;
51063
+ name?: string | undefined;
51064
+ } | undefined;
51065
+ onboard_registration?: {
50592
51066
  schema_id?: string | undefined;
50593
51067
  name?: string | undefined;
50594
51068
  } | undefined;
@@ -50760,6 +51234,11 @@ declare abstract class Client$1 {
50760
51234
  create_timestamp?: string | undefined;
50761
51235
  update_timestamp?: string | undefined;
50762
51236
  expiry_timestamp?: string | undefined;
51237
+ target_major_list?: {
51238
+ id?: string | undefined;
51239
+ zh_name?: string | undefined;
51240
+ en_name?: string | undefined;
51241
+ }[] | undefined;
50763
51242
  } | undefined;
50764
51243
  } | undefined;
50765
51244
  }>;
@@ -50785,6 +51264,7 @@ declare abstract class Client$1 {
50785
51264
  }>;
50786
51265
  jr_id_list?: Array<string>;
50787
51266
  interview_registration_schema_id?: string;
51267
+ onboard_registration_schema_id?: string;
50788
51268
  interview_round_type_conf_list?: Array<{
50789
51269
  round_biz_id?: string;
50790
51270
  assessment_template_biz_id?: string;
@@ -50865,7 +51345,11 @@ declare abstract class Client$1 {
50865
51345
  en_us?: string | undefined;
50866
51346
  } | undefined;
50867
51347
  }[] | undefined;
50868
- interview_registration_schema?: {
51348
+ interview_registration?: {
51349
+ schema_id?: string | undefined;
51350
+ name?: string | undefined;
51351
+ } | undefined;
51352
+ onboard_registration?: {
50869
51353
  schema_id?: string | undefined;
50870
51354
  name?: string | undefined;
50871
51355
  } | undefined;
@@ -52785,6 +53269,180 @@ declare abstract class Client$1 {
52785
53269
  } | undefined;
52786
53270
  }>;
52787
53271
  };
53272
+ /**
53273
+ * registration_schema
53274
+ */
53275
+ registrationSchema: {
53276
+ listWithIterator: (payload?: {
53277
+ params?: {
53278
+ page_size?: number;
53279
+ page_token?: string;
53280
+ scenario?: number;
53281
+ };
53282
+ }, options?: IRequestOptions$1) => Promise<{
53283
+ [Symbol.asyncIterator](): AsyncGenerator<{
53284
+ items?: {
53285
+ id?: string | undefined;
53286
+ name?: string | undefined;
53287
+ scenarios?: number[] | undefined;
53288
+ objects?: {
53289
+ id?: string | undefined;
53290
+ name?: {
53291
+ zh_cn?: string | undefined;
53292
+ en_us?: string | undefined;
53293
+ } | undefined;
53294
+ description?: {
53295
+ zh_cn?: string | undefined;
53296
+ en_us?: string | undefined;
53297
+ } | undefined;
53298
+ setting?: {
53299
+ object_type?: number | undefined;
53300
+ config?: {
53301
+ options?: {
53302
+ key?: string | undefined;
53303
+ name?: {
53304
+ zh_cn?: string | undefined;
53305
+ en_us?: string | undefined;
53306
+ } | undefined;
53307
+ description?: {
53308
+ zh_cn?: string | undefined;
53309
+ en_us?: string | undefined;
53310
+ } | undefined;
53311
+ active_status?: number | undefined;
53312
+ }[] | undefined;
53313
+ } | undefined;
53314
+ } | undefined;
53315
+ is_customized?: boolean | undefined;
53316
+ is_required?: boolean | undefined;
53317
+ is_visible?: boolean | undefined;
53318
+ active_status?: number | undefined;
53319
+ children_list?: {
53320
+ id?: string | undefined;
53321
+ name?: {
53322
+ zh_cn?: string | undefined;
53323
+ en_us?: string | undefined;
53324
+ } | undefined;
53325
+ description?: {
53326
+ zh_cn?: string | undefined;
53327
+ en_us?: string | undefined;
53328
+ } | undefined;
53329
+ setting?: {
53330
+ object_type?: number | undefined;
53331
+ config?: {
53332
+ options?: {
53333
+ key?: string | undefined;
53334
+ name?: {
53335
+ zh_cn?: string | undefined;
53336
+ en_us?: string | undefined;
53337
+ } | undefined;
53338
+ description?: {
53339
+ zh_cn?: string | undefined;
53340
+ en_us?: string | undefined;
53341
+ } | undefined;
53342
+ active_status?: number | undefined;
53343
+ }[] | undefined;
53344
+ } | undefined;
53345
+ } | undefined;
53346
+ parent_id?: string | undefined;
53347
+ is_customized?: boolean | undefined;
53348
+ is_required?: boolean | undefined;
53349
+ is_visible?: boolean | undefined;
53350
+ active_status?: number | undefined;
53351
+ }[] | undefined;
53352
+ }[] | undefined;
53353
+ }[] | undefined;
53354
+ } | null, void, unknown>;
53355
+ }>;
53356
+ /**
53357
+ * {@link https://open.feishu.cn/api-explorer?project=hire&resource=registration_schema&apiName=list&version=v1 click to debug }
53358
+ *
53359
+ * {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=registration_schema&version=v1 document }
53360
+ */
53361
+ list: (payload?: {
53362
+ params?: {
53363
+ page_size?: number;
53364
+ page_token?: string;
53365
+ scenario?: number;
53366
+ };
53367
+ }, options?: IRequestOptions$1) => Promise<{
53368
+ code?: number | undefined;
53369
+ msg?: string | undefined;
53370
+ data?: {
53371
+ items?: {
53372
+ id?: string | undefined;
53373
+ name?: string | undefined;
53374
+ scenarios?: number[] | undefined;
53375
+ objects?: {
53376
+ id?: string | undefined;
53377
+ name?: {
53378
+ zh_cn?: string | undefined;
53379
+ en_us?: string | undefined;
53380
+ } | undefined;
53381
+ description?: {
53382
+ zh_cn?: string | undefined;
53383
+ en_us?: string | undefined;
53384
+ } | undefined;
53385
+ setting?: {
53386
+ object_type?: number | undefined;
53387
+ config?: {
53388
+ options?: {
53389
+ key?: string | undefined;
53390
+ name?: {
53391
+ zh_cn?: string | undefined;
53392
+ en_us?: string | undefined;
53393
+ } | undefined;
53394
+ description?: {
53395
+ zh_cn?: string | undefined;
53396
+ en_us?: string | undefined;
53397
+ } | undefined;
53398
+ active_status?: number | undefined;
53399
+ }[] | undefined;
53400
+ } | undefined;
53401
+ } | undefined;
53402
+ is_customized?: boolean | undefined;
53403
+ is_required?: boolean | undefined;
53404
+ is_visible?: boolean | undefined;
53405
+ active_status?: number | undefined;
53406
+ children_list?: {
53407
+ id?: string | undefined;
53408
+ name?: {
53409
+ zh_cn?: string | undefined;
53410
+ en_us?: string | undefined;
53411
+ } | undefined;
53412
+ description?: {
53413
+ zh_cn?: string | undefined;
53414
+ en_us?: string | undefined;
53415
+ } | undefined;
53416
+ setting?: {
53417
+ object_type?: number | undefined;
53418
+ config?: {
53419
+ options?: {
53420
+ key?: string | undefined;
53421
+ name?: {
53422
+ zh_cn?: string | undefined;
53423
+ en_us?: string | undefined;
53424
+ } | undefined;
53425
+ description?: {
53426
+ zh_cn?: string | undefined;
53427
+ en_us?: string | undefined;
53428
+ } | undefined;
53429
+ active_status?: number | undefined;
53430
+ }[] | undefined;
53431
+ } | undefined;
53432
+ } | undefined;
53433
+ parent_id?: string | undefined;
53434
+ is_customized?: boolean | undefined;
53435
+ is_required?: boolean | undefined;
53436
+ is_visible?: boolean | undefined;
53437
+ active_status?: number | undefined;
53438
+ }[] | undefined;
53439
+ }[] | undefined;
53440
+ }[] | undefined;
53441
+ page_token?: string | undefined;
53442
+ has_more?: boolean | undefined;
53443
+ } | undefined;
53444
+ }>;
53445
+ };
52788
53446
  /**
52789
53447
  * 简历来源
52790
53448
  */
@@ -53315,6 +53973,12 @@ declare abstract class Client$1 {
53315
53973
  registration_time?: number | undefined;
53316
53974
  download_url?: string | undefined;
53317
53975
  }[] | undefined;
53976
+ registration_list?: {
53977
+ id?: string | undefined;
53978
+ registration_time?: number | undefined;
53979
+ download_url?: string | undefined;
53980
+ scenario?: number | undefined;
53981
+ }[] | undefined;
53318
53982
  resume_attachment_id_list?: string[] | undefined;
53319
53983
  customized_data_list?: {
53320
53984
  object_id?: string | undefined;
@@ -53415,6 +54079,89 @@ declare abstract class Client$1 {
53415
54079
  } | undefined;
53416
54080
  }>;
53417
54081
  };
54082
+ /**
54083
+ * talent_object
54084
+ */
54085
+ talentObject: {
54086
+ /**
54087
+ * {@link https://open.feishu.cn/api-explorer?project=hire&resource=talent_object&apiName=query&version=v1 click to debug }
54088
+ *
54089
+ * {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/talent_object/query document }
54090
+ *
54091
+ * 获取人才字段
54092
+ *
54093
+ * 获取人才字段
54094
+ */
54095
+ query: (payload?: {}, options?: IRequestOptions$1) => Promise<{
54096
+ code?: number | undefined;
54097
+ msg?: string | undefined;
54098
+ data?: {
54099
+ items?: {
54100
+ id?: string | undefined;
54101
+ name?: {
54102
+ zh_cn?: string | undefined;
54103
+ en_us?: string | undefined;
54104
+ } | undefined;
54105
+ description?: {
54106
+ zh_cn?: string | undefined;
54107
+ en_us?: string | undefined;
54108
+ } | undefined;
54109
+ setting?: {
54110
+ object_type?: number | undefined;
54111
+ config?: {
54112
+ options?: {
54113
+ key?: string | undefined;
54114
+ name?: {
54115
+ zh_cn?: string | undefined;
54116
+ en_us?: string | undefined;
54117
+ } | undefined;
54118
+ description?: {
54119
+ zh_cn?: string | undefined;
54120
+ en_us?: string | undefined;
54121
+ } | undefined;
54122
+ active_status?: number | undefined;
54123
+ }[] | undefined;
54124
+ } | undefined;
54125
+ } | undefined;
54126
+ is_customized?: boolean | undefined;
54127
+ is_required?: boolean | undefined;
54128
+ active_status?: number | undefined;
54129
+ children_list?: {
54130
+ id?: string | undefined;
54131
+ name?: {
54132
+ zh_cn?: string | undefined;
54133
+ en_us?: string | undefined;
54134
+ } | undefined;
54135
+ description?: {
54136
+ zh_cn?: string | undefined;
54137
+ en_us?: string | undefined;
54138
+ } | undefined;
54139
+ setting?: {
54140
+ object_type?: number | undefined;
54141
+ config?: {
54142
+ options?: {
54143
+ key?: string | undefined;
54144
+ name?: {
54145
+ zh_cn?: string | undefined;
54146
+ en_us?: string | undefined;
54147
+ } | undefined;
54148
+ description?: {
54149
+ zh_cn?: string | undefined;
54150
+ en_us?: string | undefined;
54151
+ } | undefined;
54152
+ active_status?: number | undefined;
54153
+ }[] | undefined;
54154
+ } | undefined;
54155
+ } | undefined;
54156
+ parent_id?: string | undefined;
54157
+ is_customized?: boolean | undefined;
54158
+ is_required?: boolean | undefined;
54159
+ active_status?: number | undefined;
54160
+ }[] | undefined;
54161
+ }[] | undefined;
54162
+ } | undefined;
54163
+ }>;
54164
+ };
53418
54165
  };
53419
54166
  /**
53420
54167
  * 实名认证
@@ -54994,7 +55741,7 @@ declare abstract class Client$1 {
54994
55741
  }>;
54995
55742
  };
54996
55743
  /**
54997
- * 消息
55744
+ * 消息加急
54998
55745
  */
54999
55746
  message: {
55000
55747
  /**
@@ -59226,7 +59973,7 @@ declare abstract class Client$1 {
59226
59973
  data: {
59227
59974
  properties: Array<{
59228
59975
  name: string;
59229
- type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
59976
+ type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
59230
59977
  is_searchable?: boolean;
59231
59978
  is_sortable?: boolean;
59232
59979
  is_returnable?: boolean;
@@ -59240,6 +59987,9 @@ declare abstract class Client$1 {
59240
59987
  color: "red" | "green" | "blue" | "grey" | "yellow";
59241
59988
  text: string;
59242
59989
  }>;
59990
+ user_ids?: {
59991
+ id_type: "open_id" | "union_id" | "user_id";
59992
+ };
59243
59993
  };
59244
59994
  search_options?: {
59245
59995
  enable_semantic_match?: boolean;
@@ -59248,6 +59998,23 @@ declare abstract class Client$1 {
59248
59998
  enable_number_suffix_match?: boolean;
59249
59999
  enable_camel_match?: boolean;
59250
60000
  };
60001
+ is_filterable?: boolean;
60002
+ filter_options?: {
60003
+ display_name: string;
60004
+ i18n_display_name?: {
60005
+ zh_cn?: string;
60006
+ en_us?: string;
60007
+ ja_jp?: string;
60008
+ };
60009
+ option_mode?: "single" | "multiple";
60010
+ associated_smart_filter?: "from" | "date";
60011
+ filter_type?: "user" | "time" | "searchable" | "predefine_enum";
60012
+ predefine_enum_values?: Array<{
60013
+ name: string;
60014
+ text: string;
60015
+ }>;
60016
+ enable_client_filter?: boolean;
60017
+ };
59251
60018
  }>;
59252
60019
  display: {
59253
60020
  card_key: "search_common_card";
@@ -59268,7 +60035,7 @@ declare abstract class Client$1 {
59268
60035
  schema?: {
59269
60036
  properties: Array<{
59270
60037
  name: string;
59271
- type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
60038
+ type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
59272
60039
  is_searchable?: boolean;
59273
60040
  is_sortable?: boolean;
59274
60041
  is_returnable?: boolean;
@@ -59282,6 +60049,9 @@ declare abstract class Client$1 {
59282
60049
  color: "red" | "green" | "blue" | "grey" | "yellow";
59283
60050
  text: string;
59284
60051
  }>;
60052
+ user_ids?: {
60053
+ id_type: "open_id" | "union_id" | "user_id";
60054
+ };
59285
60055
  };
59286
60056
  search_options?: {
59287
60057
  enable_semantic_match?: boolean;
@@ -59290,6 +60060,23 @@ declare abstract class Client$1 {
59290
60060
  enable_number_suffix_match?: boolean;
59291
60061
  enable_camel_match?: boolean;
59292
60062
  };
60063
+ is_filterable?: boolean;
60064
+ filter_options?: {
60065
+ display_name: string;
60066
+ i18n_display_name?: {
60067
+ zh_cn?: string;
60068
+ en_us?: string;
60069
+ ja_jp?: string;
60070
+ };
60071
+ option_mode?: "single" | "multiple";
60072
+ associated_smart_filter?: "from" | "date";
60073
+ filter_type?: "user" | "time" | "searchable" | "predefine_enum";
60074
+ predefine_enum_values?: Array<{
60075
+ name: string;
60076
+ text: string;
60077
+ }>;
60078
+ enable_client_filter?: boolean;
60079
+ };
59293
60080
  }>;
59294
60081
  display: {
59295
60082
  card_key: "search_common_card";
@@ -59340,7 +60127,7 @@ declare abstract class Client$1 {
59340
60127
  schema?: {
59341
60128
  properties: Array<{
59342
60129
  name: string;
59343
- type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
60130
+ type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
59344
60131
  is_searchable?: boolean;
59345
60132
  is_sortable?: boolean;
59346
60133
  is_returnable?: boolean;
@@ -59354,6 +60141,9 @@ declare abstract class Client$1 {
59354
60141
  color: "red" | "green" | "blue" | "grey" | "yellow";
59355
60142
  text: string;
59356
60143
  }>;
60144
+ user_ids?: {
60145
+ id_type: "open_id" | "union_id" | "user_id";
60146
+ };
59357
60147
  };
59358
60148
  search_options?: {
59359
60149
  enable_semantic_match?: boolean;
@@ -59362,6 +60152,23 @@ declare abstract class Client$1 {
59362
60152
  enable_number_suffix_match?: boolean;
59363
60153
  enable_camel_match?: boolean;
59364
60154
  };
60155
+ is_filterable?: boolean;
60156
+ filter_options?: {
60157
+ display_name: string;
60158
+ i18n_display_name?: {
60159
+ zh_cn?: string;
60160
+ en_us?: string;
60161
+ ja_jp?: string;
60162
+ };
60163
+ option_mode?: "single" | "multiple";
60164
+ associated_smart_filter?: "from" | "date";
60165
+ filter_type?: "user" | "time" | "searchable" | "predefine_enum";
60166
+ predefine_enum_values?: Array<{
60167
+ name: string;
60168
+ text: string;
60169
+ }>;
60170
+ enable_client_filter?: boolean;
60171
+ };
59365
60172
  }>;
59366
60173
  display: {
59367
60174
  card_key: "search_common_card";
@@ -59403,7 +60210,7 @@ declare abstract class Client$1 {
59403
60210
  schema?: {
59404
60211
  properties: Array<{
59405
60212
  name: string;
59406
- type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext";
60213
+ type: "text" | "int" | "tag" | "timestamp" | "double" | "tinytext" | "user_ids";
59407
60214
  is_searchable?: boolean;
59408
60215
  is_sortable?: boolean;
59409
60216
  is_returnable?: boolean;
@@ -59417,6 +60224,9 @@ declare abstract class Client$1 {
59417
60224
  color: "red" | "green" | "blue" | "grey" | "yellow";
59418
60225
  text: string;
59419
60226
  }>;
60227
+ user_ids?: {
60228
+ id_type: "open_id" | "union_id" | "user_id";
60229
+ };
59420
60230
  };
59421
60231
  search_options?: {
59422
60232
  enable_semantic_match?: boolean;
@@ -59425,6 +60235,23 @@ declare abstract class Client$1 {
59425
60235
  enable_number_suffix_match?: boolean;
59426
60236
  enable_camel_match?: boolean;
59427
60237
  };
60238
+ is_filterable?: boolean;
60239
+ filter_options?: {
60240
+ display_name: string;
60241
+ i18n_display_name?: {
60242
+ zh_cn?: string;
60243
+ en_us?: string;
60244
+ ja_jp?: string;
60245
+ };
60246
+ option_mode?: "single" | "multiple";
60247
+ associated_smart_filter?: "from" | "date";
60248
+ filter_type?: "user" | "time" | "searchable" | "predefine_enum";
60249
+ predefine_enum_values?: Array<{
60250
+ name: string;
60251
+ text: string;
60252
+ }>;
60253
+ enable_client_filter?: boolean;
60254
+ };
59428
60255
  }>;
59429
60256
  display: {
59430
60257
  card_key: "search_common_card";
@@ -59938,7 +60765,7 @@ declare abstract class Client$1 {
59938
60765
  }>;
59939
60766
  };
59940
60767
  /**
59941
- * 单元格
60768
+ * 工作表
59942
60769
  */
59943
60770
  spreadsheetSheet: {
59944
60771
  /**
@@ -63040,6 +63867,7 @@ declare abstract class Client$1 {
63040
63867
  }, options?: IRequestOptions$1) => Promise<{
63041
63868
  [Symbol.asyncIterator](): AsyncGenerator<{
63042
63869
  room_reservation_list?: {
63870
+ room_id?: string | undefined;
63043
63871
  room_name?: string | undefined;
63044
63872
  event_title?: string | undefined;
63045
63873
  reserver?: string | undefined;
@@ -63080,6 +63908,7 @@ declare abstract class Client$1 {
63080
63908
  msg?: string | undefined;
63081
63909
  data?: {
63082
63910
  room_reservation_list?: {
63911
+ room_id?: string | undefined;
63083
63912
  room_name?: string | undefined;
63084
63913
  event_title?: string | undefined;
63085
63914
  reserver?: string | undefined;
@@ -65757,7 +66586,7 @@ interface IHandles extends IOtherEventHandles {
65757
66586
  };
65758
66587
  };
65759
66588
  event_key?: string;
65760
- timestamp?: string;
66589
+ timestamp?: number;
65761
66590
  }) => Promise<any> | any;
65762
66591
  /**
65763
66592
  * {@link https://open.feishu.cn/document/ukTMukTMukTM/uIDO24iM4YjLygjN/event/custom-approval-event document }
@@ -67133,6 +67962,12 @@ interface IHandles extends IOtherEventHandles {
67133
67962
  type?: string;
67134
67963
  app_id?: string;
67135
67964
  job_data_id?: string;
67965
+ employment_id?: string;
67966
+ target_user_id?: {
67967
+ union_id?: string;
67968
+ user_id?: string;
67969
+ open_id?: string;
67970
+ };
67136
67971
  }) => Promise<any> | any;
67137
67972
  /**
67138
67973
  * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/events/employed document }
@@ -67152,6 +67987,12 @@ interface IHandles extends IOtherEventHandles {
67152
67987
  type?: string;
67153
67988
  app_id?: string;
67154
67989
  job_data_id?: string;
67990
+ employment_id?: string;
67991
+ target_user_id?: {
67992
+ union_id?: string;
67993
+ user_id?: string;
67994
+ open_id?: string;
67995
+ };
67155
67996
  }) => Promise<any> | any;
67156
67997
  /**
67157
67998
  * {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/events/updated document }