@larksuiteoapi/node-sdk 1.33.0 → 1.34.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 +829 -138
- package/lib/index.js +829 -138
- package/package.json +1 -1
- package/types/index.d.ts +1381 -297
package/types/index.d.ts
CHANGED
|
@@ -4712,6 +4712,37 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
4712
4712
|
data?: {} | undefined;
|
|
4713
4713
|
}>;
|
|
4714
4714
|
};
|
|
4715
|
+
/**
|
|
4716
|
+
* scope
|
|
4717
|
+
*/
|
|
4718
|
+
scope: {
|
|
4719
|
+
/**
|
|
4720
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=scope&apiName=apply&version=v6 click to debug }
|
|
4721
|
+
*
|
|
4722
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=apply&project=application&resource=scope&version=v6 document }
|
|
4723
|
+
*/
|
|
4724
|
+
apply: (payload?: {}, options?: IRequestOptions$1) => Promise<{
|
|
4725
|
+
code?: number | undefined;
|
|
4726
|
+
msg?: string | undefined;
|
|
4727
|
+
data?: {} | undefined;
|
|
4728
|
+
}>;
|
|
4729
|
+
/**
|
|
4730
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=scope&apiName=list&version=v6 click to debug }
|
|
4731
|
+
*
|
|
4732
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=application&resource=scope&version=v6 document }
|
|
4733
|
+
*/
|
|
4734
|
+
list: (payload?: {}, options?: IRequestOptions$1) => Promise<{
|
|
4735
|
+
code?: number | undefined;
|
|
4736
|
+
msg?: string | undefined;
|
|
4737
|
+
data?: {
|
|
4738
|
+
scopes?: {
|
|
4739
|
+
scope_name: string;
|
|
4740
|
+
grant_status: number;
|
|
4741
|
+
scope_type?: "user" | "tenant" | undefined;
|
|
4742
|
+
}[] | undefined;
|
|
4743
|
+
} | undefined;
|
|
4744
|
+
}>;
|
|
4745
|
+
};
|
|
4715
4746
|
v6: {
|
|
4716
4747
|
/**
|
|
4717
4748
|
* 应用红点
|
|
@@ -5883,6 +5914,37 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
5883
5914
|
data?: {} | undefined;
|
|
5884
5915
|
}>;
|
|
5885
5916
|
};
|
|
5917
|
+
/**
|
|
5918
|
+
* scope
|
|
5919
|
+
*/
|
|
5920
|
+
scope: {
|
|
5921
|
+
/**
|
|
5922
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=scope&apiName=apply&version=v6 click to debug }
|
|
5923
|
+
*
|
|
5924
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=apply&project=application&resource=scope&version=v6 document }
|
|
5925
|
+
*/
|
|
5926
|
+
apply: (payload?: {}, options?: IRequestOptions$1) => Promise<{
|
|
5927
|
+
code?: number | undefined;
|
|
5928
|
+
msg?: string | undefined;
|
|
5929
|
+
data?: {} | undefined;
|
|
5930
|
+
}>;
|
|
5931
|
+
/**
|
|
5932
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=scope&apiName=list&version=v6 click to debug }
|
|
5933
|
+
*
|
|
5934
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=application&resource=scope&version=v6 document }
|
|
5935
|
+
*/
|
|
5936
|
+
list: (payload?: {}, options?: IRequestOptions$1) => Promise<{
|
|
5937
|
+
code?: number | undefined;
|
|
5938
|
+
msg?: string | undefined;
|
|
5939
|
+
data?: {
|
|
5940
|
+
scopes?: {
|
|
5941
|
+
scope_name: string;
|
|
5942
|
+
grant_status: number;
|
|
5943
|
+
scope_type?: "user" | "tenant" | undefined;
|
|
5944
|
+
}[] | undefined;
|
|
5945
|
+
} | undefined;
|
|
5946
|
+
}>;
|
|
5947
|
+
};
|
|
5886
5948
|
};
|
|
5887
5949
|
};
|
|
5888
5950
|
}
|
|
@@ -7173,7 +7235,7 @@ declare abstract class Client$X extends Client$Y {
|
|
|
7173
7235
|
}>;
|
|
7174
7236
|
};
|
|
7175
7237
|
/**
|
|
7176
|
-
*
|
|
7238
|
+
* 审批查询
|
|
7177
7239
|
*/
|
|
7178
7240
|
task: {
|
|
7179
7241
|
/**
|
|
@@ -8706,7 +8768,7 @@ declare abstract class Client$X extends Client$Y {
|
|
|
8706
8768
|
}>;
|
|
8707
8769
|
};
|
|
8708
8770
|
/**
|
|
8709
|
-
*
|
|
8771
|
+
* 审批查询
|
|
8710
8772
|
*/
|
|
8711
8773
|
task: {
|
|
8712
8774
|
/**
|
|
@@ -9937,231 +9999,234 @@ declare abstract class Client$W extends Client$X {
|
|
|
9937
9999
|
late_on_base_on_time_type?: number;
|
|
9938
10000
|
};
|
|
9939
10001
|
};
|
|
9940
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
9941
|
-
code?: number | undefined;
|
|
9942
|
-
msg?: string | undefined;
|
|
9943
|
-
data?: {
|
|
9944
|
-
shift?: {
|
|
9945
|
-
shift_id: string;
|
|
9946
|
-
shift_name: string;
|
|
9947
|
-
punch_times: number;
|
|
9948
|
-
sub_shift_leader_ids?: string[] | undefined;
|
|
9949
|
-
is_flexible?: boolean | undefined;
|
|
9950
|
-
flexible_minutes?: number | undefined;
|
|
9951
|
-
flexible_rule?: {
|
|
9952
|
-
flexible_early_minutes: number;
|
|
9953
|
-
flexible_late_minutes: number;
|
|
9954
|
-
}[] | undefined;
|
|
9955
|
-
no_need_off?: boolean | undefined;
|
|
9956
|
-
punch_time_rule: Array<{
|
|
9957
|
-
on_time: string;
|
|
9958
|
-
off_time: string;
|
|
9959
|
-
late_minutes_as_late: number;
|
|
9960
|
-
late_minutes_as_lack: number;
|
|
9961
|
-
on_advance_minutes: number;
|
|
9962
|
-
early_minutes_as_early: number;
|
|
9963
|
-
early_minutes_as_lack: number;
|
|
9964
|
-
off_delay_minutes: number;
|
|
9965
|
-
late_minutes_as_serious_late?: number;
|
|
9966
|
-
no_need_on?: boolean;
|
|
9967
|
-
no_need_off?: boolean;
|
|
9968
|
-
}>;
|
|
9969
|
-
late_off_late_on_rule?: {
|
|
9970
|
-
late_off_minutes: number;
|
|
9971
|
-
late_on_minutes: number;
|
|
9972
|
-
}[] | undefined;
|
|
9973
|
-
rest_time_rule?: {
|
|
9974
|
-
rest_begin_time: string;
|
|
9975
|
-
rest_end_time: string;
|
|
9976
|
-
}[] | undefined;
|
|
9977
|
-
overtime_rule?: {
|
|
9978
|
-
on_overtime: string;
|
|
9979
|
-
off_overtime: string;
|
|
9980
|
-
}[] | undefined;
|
|
9981
|
-
day_type?: number | undefined;
|
|
9982
|
-
overtime_rest_time_rule?: {
|
|
9983
|
-
rest_begin_time: string;
|
|
9984
|
-
rest_end_time: string;
|
|
9985
|
-
}[] | undefined;
|
|
9986
|
-
late_minutes_as_serious_late?: number | undefined;
|
|
9987
|
-
shift_middle_time_rule?: {
|
|
9988
|
-
middle_time_type?: number | undefined;
|
|
9989
|
-
fixed_middle_time?: string | undefined;
|
|
9990
|
-
} | undefined;
|
|
9991
|
-
late_off_late_on_setting?: {
|
|
9992
|
-
late_off_base_on_time_type?: number | undefined;
|
|
9993
|
-
late_on_base_on_time_type?: number | undefined;
|
|
9994
|
-
} | undefined;
|
|
9995
|
-
} | undefined;
|
|
9996
|
-
} | undefined;
|
|
9997
|
-
}>;
|
|
9998
|
-
/**
|
|
9999
|
-
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=delete&version=v1 click to debug }
|
|
10000
|
-
*
|
|
10001
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/delete document }
|
|
10002
|
-
*
|
|
10003
|
-
* 删除班次
|
|
10004
|
-
*
|
|
10005
|
-
* 通过班次 ID 删除班次。
|
|
10006
|
-
*/
|
|
10007
|
-
delete: (payload?: {
|
|
10008
|
-
path: {
|
|
10009
|
-
shift_id: string;
|
|
10010
|
-
};
|
|
10011
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
10012
|
-
code?: number | undefined;
|
|
10013
|
-
msg?: string | undefined;
|
|
10014
|
-
data?: {} | undefined;
|
|
10015
|
-
}>;
|
|
10016
|
-
/**
|
|
10017
|
-
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=get&version=v1 click to debug }
|
|
10018
|
-
*
|
|
10019
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/get document }
|
|
10020
|
-
*
|
|
10021
|
-
* 获取班次详情
|
|
10022
|
-
*
|
|
10023
|
-
* 通过班次 ID 获取班次详情。
|
|
10024
|
-
*/
|
|
10025
|
-
get: (payload?: {
|
|
10026
|
-
path: {
|
|
10027
|
-
shift_id: string;
|
|
10028
|
-
};
|
|
10029
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
10030
|
-
code?: number | undefined;
|
|
10031
|
-
msg?: string | undefined;
|
|
10032
|
-
data?: {
|
|
10033
|
-
shift_id: string;
|
|
10034
|
-
shift_name: string;
|
|
10035
|
-
punch_times: number;
|
|
10036
|
-
sub_shift_leader_ids?: string[] | undefined;
|
|
10037
|
-
is_flexible?: boolean | undefined;
|
|
10038
|
-
flexible_minutes?: number | undefined;
|
|
10039
|
-
flexible_rule?: {
|
|
10040
|
-
flexible_early_minutes: number;
|
|
10041
|
-
flexible_late_minutes: number;
|
|
10042
|
-
}[] | undefined;
|
|
10043
|
-
no_need_off?: boolean | undefined;
|
|
10044
|
-
punch_time_rule: Array<{
|
|
10045
|
-
on_time: string;
|
|
10046
|
-
off_time: string;
|
|
10047
|
-
late_minutes_as_late: number;
|
|
10048
|
-
late_minutes_as_lack: number;
|
|
10049
|
-
on_advance_minutes: number;
|
|
10050
|
-
early_minutes_as_early: number;
|
|
10051
|
-
early_minutes_as_lack: number;
|
|
10052
|
-
off_delay_minutes: number;
|
|
10053
|
-
late_minutes_as_serious_late?: number;
|
|
10054
|
-
no_need_on?: boolean;
|
|
10055
|
-
no_need_off?: boolean;
|
|
10056
|
-
}>;
|
|
10057
|
-
late_off_late_on_rule?: {
|
|
10058
|
-
late_off_minutes: number;
|
|
10059
|
-
late_on_minutes: number;
|
|
10060
|
-
}[] | undefined;
|
|
10061
|
-
rest_time_rule?: {
|
|
10062
|
-
rest_begin_time: string;
|
|
10063
|
-
rest_end_time: string;
|
|
10064
|
-
}[] | undefined;
|
|
10065
|
-
overtime_rule?: {
|
|
10066
|
-
on_overtime: string;
|
|
10067
|
-
off_overtime: string;
|
|
10068
|
-
}[] | undefined;
|
|
10069
|
-
day_type?: number | undefined;
|
|
10070
|
-
overtime_rest_time_rule?: {
|
|
10071
|
-
rest_begin_time: string;
|
|
10072
|
-
rest_end_time: string;
|
|
10073
|
-
}[] | undefined;
|
|
10074
|
-
late_minutes_as_serious_late?: number | undefined;
|
|
10075
|
-
shift_middle_time_rule?: {
|
|
10076
|
-
middle_time_type?: number | undefined;
|
|
10077
|
-
fixed_middle_time?: string | undefined;
|
|
10078
|
-
} | undefined;
|
|
10079
|
-
late_off_late_on_setting?: {
|
|
10080
|
-
late_off_base_on_time_type?: number | undefined;
|
|
10081
|
-
late_on_base_on_time_type?: number | undefined;
|
|
10082
|
-
} | undefined;
|
|
10083
|
-
} | undefined;
|
|
10084
|
-
}>;
|
|
10085
|
-
listWithIterator: (payload?: {
|
|
10086
10002
|
params?: {
|
|
10087
|
-
|
|
10088
|
-
page_token?: string;
|
|
10089
|
-
};
|
|
10090
|
-
}, options?: IRequestOptions$1) => Promise<{
|
|
10091
|
-
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
10092
|
-
shift_list?: {
|
|
10093
|
-
shift_id: string;
|
|
10094
|
-
shift_name: string;
|
|
10095
|
-
punch_times: number;
|
|
10096
|
-
sub_shift_leader_ids?: string[] | undefined;
|
|
10097
|
-
is_flexible?: boolean | undefined;
|
|
10098
|
-
flexible_minutes?: number | undefined;
|
|
10099
|
-
flexible_rule?: {
|
|
10100
|
-
flexible_early_minutes: number;
|
|
10101
|
-
flexible_late_minutes: number;
|
|
10102
|
-
}[] | undefined;
|
|
10103
|
-
no_need_off?: boolean | undefined;
|
|
10104
|
-
punch_time_rule: Array<{
|
|
10105
|
-
on_time: string;
|
|
10106
|
-
off_time: string;
|
|
10107
|
-
late_minutes_as_late: number;
|
|
10108
|
-
late_minutes_as_lack: number;
|
|
10109
|
-
on_advance_minutes: number;
|
|
10110
|
-
early_minutes_as_early: number;
|
|
10111
|
-
early_minutes_as_lack: number;
|
|
10112
|
-
off_delay_minutes: number;
|
|
10113
|
-
late_minutes_as_serious_late?: number;
|
|
10114
|
-
no_need_on?: boolean;
|
|
10115
|
-
no_need_off?: boolean;
|
|
10116
|
-
}>;
|
|
10117
|
-
late_off_late_on_rule?: {
|
|
10118
|
-
late_off_minutes: number;
|
|
10119
|
-
late_on_minutes: number;
|
|
10120
|
-
}[] | undefined;
|
|
10121
|
-
rest_time_rule?: {
|
|
10122
|
-
rest_begin_time: string;
|
|
10123
|
-
rest_end_time: string;
|
|
10124
|
-
}[] | undefined;
|
|
10125
|
-
overtime_rule?: {
|
|
10126
|
-
on_overtime: string;
|
|
10127
|
-
off_overtime: string;
|
|
10128
|
-
}[] | undefined;
|
|
10129
|
-
day_type?: number | undefined;
|
|
10130
|
-
overtime_rest_time_rule?: {
|
|
10131
|
-
rest_begin_time: string;
|
|
10132
|
-
rest_end_time: string;
|
|
10133
|
-
}[] | undefined;
|
|
10134
|
-
late_minutes_as_serious_late?: number | undefined;
|
|
10135
|
-
shift_middle_time_rule?: {
|
|
10136
|
-
middle_time_type?: number | undefined;
|
|
10137
|
-
fixed_middle_time?: string | undefined;
|
|
10138
|
-
} | undefined;
|
|
10139
|
-
late_off_late_on_setting?: {
|
|
10140
|
-
late_off_base_on_time_type?: number | undefined;
|
|
10141
|
-
late_on_base_on_time_type?: number | undefined;
|
|
10142
|
-
} | undefined;
|
|
10143
|
-
}[] | undefined;
|
|
10144
|
-
} | null, void, unknown>;
|
|
10145
|
-
}>;
|
|
10146
|
-
/**
|
|
10147
|
-
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=list&version=v1 click to debug }
|
|
10148
|
-
*
|
|
10149
|
-
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/list document }
|
|
10150
|
-
*
|
|
10151
|
-
* 获取班次列表
|
|
10152
|
-
*
|
|
10153
|
-
* 翻页获取所有班次列表。
|
|
10154
|
-
*/
|
|
10155
|
-
list: (payload?: {
|
|
10156
|
-
params?: {
|
|
10157
|
-
page_size?: number;
|
|
10158
|
-
page_token?: string;
|
|
10003
|
+
employee_type?: "employee_id" | "employee_no";
|
|
10159
10004
|
};
|
|
10160
10005
|
}, options?: IRequestOptions$1) => Promise<{
|
|
10161
10006
|
code?: number | undefined;
|
|
10162
10007
|
msg?: string | undefined;
|
|
10163
10008
|
data?: {
|
|
10164
|
-
|
|
10009
|
+
shift?: {
|
|
10010
|
+
shift_id: string;
|
|
10011
|
+
shift_name: string;
|
|
10012
|
+
punch_times: number;
|
|
10013
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
10014
|
+
is_flexible?: boolean | undefined;
|
|
10015
|
+
flexible_minutes?: number | undefined;
|
|
10016
|
+
flexible_rule?: {
|
|
10017
|
+
flexible_early_minutes: number;
|
|
10018
|
+
flexible_late_minutes: number;
|
|
10019
|
+
}[] | undefined;
|
|
10020
|
+
no_need_off?: boolean | undefined;
|
|
10021
|
+
punch_time_rule: Array<{
|
|
10022
|
+
on_time: string;
|
|
10023
|
+
off_time: string;
|
|
10024
|
+
late_minutes_as_late: number;
|
|
10025
|
+
late_minutes_as_lack: number;
|
|
10026
|
+
on_advance_minutes: number;
|
|
10027
|
+
early_minutes_as_early: number;
|
|
10028
|
+
early_minutes_as_lack: number;
|
|
10029
|
+
off_delay_minutes: number;
|
|
10030
|
+
late_minutes_as_serious_late?: number;
|
|
10031
|
+
no_need_on?: boolean;
|
|
10032
|
+
no_need_off?: boolean;
|
|
10033
|
+
}>;
|
|
10034
|
+
late_off_late_on_rule?: {
|
|
10035
|
+
late_off_minutes: number;
|
|
10036
|
+
late_on_minutes: number;
|
|
10037
|
+
}[] | undefined;
|
|
10038
|
+
rest_time_rule?: {
|
|
10039
|
+
rest_begin_time: string;
|
|
10040
|
+
rest_end_time: string;
|
|
10041
|
+
}[] | undefined;
|
|
10042
|
+
overtime_rule?: {
|
|
10043
|
+
on_overtime: string;
|
|
10044
|
+
off_overtime: string;
|
|
10045
|
+
}[] | undefined;
|
|
10046
|
+
day_type?: number | undefined;
|
|
10047
|
+
overtime_rest_time_rule?: {
|
|
10048
|
+
rest_begin_time: string;
|
|
10049
|
+
rest_end_time: string;
|
|
10050
|
+
}[] | undefined;
|
|
10051
|
+
late_minutes_as_serious_late?: number | undefined;
|
|
10052
|
+
shift_middle_time_rule?: {
|
|
10053
|
+
middle_time_type?: number | undefined;
|
|
10054
|
+
fixed_middle_time?: string | undefined;
|
|
10055
|
+
} | undefined;
|
|
10056
|
+
late_off_late_on_setting?: {
|
|
10057
|
+
late_off_base_on_time_type?: number | undefined;
|
|
10058
|
+
late_on_base_on_time_type?: number | undefined;
|
|
10059
|
+
} | undefined;
|
|
10060
|
+
} | undefined;
|
|
10061
|
+
} | undefined;
|
|
10062
|
+
}>;
|
|
10063
|
+
/**
|
|
10064
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=delete&version=v1 click to debug }
|
|
10065
|
+
*
|
|
10066
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/delete document }
|
|
10067
|
+
*
|
|
10068
|
+
* 删除班次
|
|
10069
|
+
*
|
|
10070
|
+
* 通过班次 ID 删除班次。
|
|
10071
|
+
*/
|
|
10072
|
+
delete: (payload?: {
|
|
10073
|
+
path: {
|
|
10074
|
+
shift_id: string;
|
|
10075
|
+
};
|
|
10076
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
10077
|
+
code?: number | undefined;
|
|
10078
|
+
msg?: string | undefined;
|
|
10079
|
+
data?: {} | undefined;
|
|
10080
|
+
}>;
|
|
10081
|
+
/**
|
|
10082
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=get&version=v1 click to debug }
|
|
10083
|
+
*
|
|
10084
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/get document }
|
|
10085
|
+
*
|
|
10086
|
+
* 获取班次详情
|
|
10087
|
+
*
|
|
10088
|
+
* 通过班次 ID 获取班次详情。
|
|
10089
|
+
*/
|
|
10090
|
+
get: (payload?: {
|
|
10091
|
+
path: {
|
|
10092
|
+
shift_id: string;
|
|
10093
|
+
};
|
|
10094
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
10095
|
+
code?: number | undefined;
|
|
10096
|
+
msg?: string | undefined;
|
|
10097
|
+
data?: {
|
|
10098
|
+
shift_id: string;
|
|
10099
|
+
shift_name: string;
|
|
10100
|
+
punch_times: number;
|
|
10101
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
10102
|
+
is_flexible?: boolean | undefined;
|
|
10103
|
+
flexible_minutes?: number | undefined;
|
|
10104
|
+
flexible_rule?: {
|
|
10105
|
+
flexible_early_minutes: number;
|
|
10106
|
+
flexible_late_minutes: number;
|
|
10107
|
+
}[] | undefined;
|
|
10108
|
+
no_need_off?: boolean | undefined;
|
|
10109
|
+
punch_time_rule: Array<{
|
|
10110
|
+
on_time: string;
|
|
10111
|
+
off_time: string;
|
|
10112
|
+
late_minutes_as_late: number;
|
|
10113
|
+
late_minutes_as_lack: number;
|
|
10114
|
+
on_advance_minutes: number;
|
|
10115
|
+
early_minutes_as_early: number;
|
|
10116
|
+
early_minutes_as_lack: number;
|
|
10117
|
+
off_delay_minutes: number;
|
|
10118
|
+
late_minutes_as_serious_late?: number;
|
|
10119
|
+
no_need_on?: boolean;
|
|
10120
|
+
no_need_off?: boolean;
|
|
10121
|
+
}>;
|
|
10122
|
+
late_off_late_on_rule?: {
|
|
10123
|
+
late_off_minutes: number;
|
|
10124
|
+
late_on_minutes: number;
|
|
10125
|
+
}[] | undefined;
|
|
10126
|
+
rest_time_rule?: {
|
|
10127
|
+
rest_begin_time: string;
|
|
10128
|
+
rest_end_time: string;
|
|
10129
|
+
}[] | undefined;
|
|
10130
|
+
overtime_rule?: {
|
|
10131
|
+
on_overtime: string;
|
|
10132
|
+
off_overtime: string;
|
|
10133
|
+
}[] | undefined;
|
|
10134
|
+
day_type?: number | undefined;
|
|
10135
|
+
overtime_rest_time_rule?: {
|
|
10136
|
+
rest_begin_time: string;
|
|
10137
|
+
rest_end_time: string;
|
|
10138
|
+
}[] | undefined;
|
|
10139
|
+
late_minutes_as_serious_late?: number | undefined;
|
|
10140
|
+
shift_middle_time_rule?: {
|
|
10141
|
+
middle_time_type?: number | undefined;
|
|
10142
|
+
fixed_middle_time?: string | undefined;
|
|
10143
|
+
} | undefined;
|
|
10144
|
+
late_off_late_on_setting?: {
|
|
10145
|
+
late_off_base_on_time_type?: number | undefined;
|
|
10146
|
+
late_on_base_on_time_type?: number | undefined;
|
|
10147
|
+
} | undefined;
|
|
10148
|
+
} | undefined;
|
|
10149
|
+
}>;
|
|
10150
|
+
listWithIterator: (payload?: {
|
|
10151
|
+
params?: {
|
|
10152
|
+
page_size?: number;
|
|
10153
|
+
page_token?: string;
|
|
10154
|
+
};
|
|
10155
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
10156
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
10157
|
+
shift_list?: {
|
|
10158
|
+
shift_id: string;
|
|
10159
|
+
shift_name: string;
|
|
10160
|
+
punch_times: number;
|
|
10161
|
+
sub_shift_leader_ids?: string[] | undefined;
|
|
10162
|
+
is_flexible?: boolean | undefined;
|
|
10163
|
+
flexible_minutes?: number | undefined;
|
|
10164
|
+
flexible_rule?: {
|
|
10165
|
+
flexible_early_minutes: number;
|
|
10166
|
+
flexible_late_minutes: number;
|
|
10167
|
+
}[] | undefined;
|
|
10168
|
+
no_need_off?: boolean | undefined;
|
|
10169
|
+
punch_time_rule: Array<{
|
|
10170
|
+
on_time: string;
|
|
10171
|
+
off_time: string;
|
|
10172
|
+
late_minutes_as_late: number;
|
|
10173
|
+
late_minutes_as_lack: number;
|
|
10174
|
+
on_advance_minutes: number;
|
|
10175
|
+
early_minutes_as_early: number;
|
|
10176
|
+
early_minutes_as_lack: number;
|
|
10177
|
+
off_delay_minutes: number;
|
|
10178
|
+
late_minutes_as_serious_late?: number;
|
|
10179
|
+
no_need_on?: boolean;
|
|
10180
|
+
no_need_off?: boolean;
|
|
10181
|
+
}>;
|
|
10182
|
+
late_off_late_on_rule?: {
|
|
10183
|
+
late_off_minutes: number;
|
|
10184
|
+
late_on_minutes: number;
|
|
10185
|
+
}[] | undefined;
|
|
10186
|
+
rest_time_rule?: {
|
|
10187
|
+
rest_begin_time: string;
|
|
10188
|
+
rest_end_time: string;
|
|
10189
|
+
}[] | undefined;
|
|
10190
|
+
overtime_rule?: {
|
|
10191
|
+
on_overtime: string;
|
|
10192
|
+
off_overtime: string;
|
|
10193
|
+
}[] | undefined;
|
|
10194
|
+
day_type?: number | undefined;
|
|
10195
|
+
overtime_rest_time_rule?: {
|
|
10196
|
+
rest_begin_time: string;
|
|
10197
|
+
rest_end_time: string;
|
|
10198
|
+
}[] | undefined;
|
|
10199
|
+
late_minutes_as_serious_late?: number | undefined;
|
|
10200
|
+
shift_middle_time_rule?: {
|
|
10201
|
+
middle_time_type?: number | undefined;
|
|
10202
|
+
fixed_middle_time?: string | undefined;
|
|
10203
|
+
} | undefined;
|
|
10204
|
+
late_off_late_on_setting?: {
|
|
10205
|
+
late_off_base_on_time_type?: number | undefined;
|
|
10206
|
+
late_on_base_on_time_type?: number | undefined;
|
|
10207
|
+
} | undefined;
|
|
10208
|
+
}[] | undefined;
|
|
10209
|
+
} | null, void, unknown>;
|
|
10210
|
+
}>;
|
|
10211
|
+
/**
|
|
10212
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=shift&apiName=list&version=v1 click to debug }
|
|
10213
|
+
*
|
|
10214
|
+
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/attendance-v1/shift/list document }
|
|
10215
|
+
*
|
|
10216
|
+
* 获取班次列表
|
|
10217
|
+
*
|
|
10218
|
+
* 翻页获取所有班次列表。
|
|
10219
|
+
*/
|
|
10220
|
+
list: (payload?: {
|
|
10221
|
+
params?: {
|
|
10222
|
+
page_size?: number;
|
|
10223
|
+
page_token?: string;
|
|
10224
|
+
};
|
|
10225
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
10226
|
+
code?: number | undefined;
|
|
10227
|
+
msg?: string | undefined;
|
|
10228
|
+
data?: {
|
|
10229
|
+
shift_list?: {
|
|
10165
10230
|
shift_id: string;
|
|
10166
10231
|
shift_name: string;
|
|
10167
10232
|
punch_times: number;
|
|
@@ -10541,6 +10606,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
10541
10606
|
month: number;
|
|
10542
10607
|
user_id: string;
|
|
10543
10608
|
day_no: number;
|
|
10609
|
+
is_clear_schedule?: boolean;
|
|
10544
10610
|
}>;
|
|
10545
10611
|
operator_id?: string;
|
|
10546
10612
|
};
|
|
@@ -10557,6 +10623,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
10557
10623
|
month: number;
|
|
10558
10624
|
user_id: string;
|
|
10559
10625
|
day_no: number;
|
|
10626
|
+
is_clear_schedule?: boolean | undefined;
|
|
10560
10627
|
}[] | undefined;
|
|
10561
10628
|
} | undefined;
|
|
10562
10629
|
}>;
|
|
@@ -10588,6 +10655,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
10588
10655
|
month: number;
|
|
10589
10656
|
user_id: string;
|
|
10590
10657
|
day_no: number;
|
|
10658
|
+
is_clear_schedule?: boolean | undefined;
|
|
10591
10659
|
}[] | undefined;
|
|
10592
10660
|
} | undefined;
|
|
10593
10661
|
}>;
|
|
@@ -12187,6 +12255,9 @@ declare abstract class Client$W extends Client$X {
|
|
|
12187
12255
|
late_on_base_on_time_type?: number;
|
|
12188
12256
|
};
|
|
12189
12257
|
};
|
|
12258
|
+
params?: {
|
|
12259
|
+
employee_type?: "employee_id" | "employee_no";
|
|
12260
|
+
};
|
|
12190
12261
|
}, options?: IRequestOptions$1) => Promise<{
|
|
12191
12262
|
code?: number | undefined;
|
|
12192
12263
|
msg?: string | undefined;
|
|
@@ -12791,6 +12862,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
12791
12862
|
month: number;
|
|
12792
12863
|
user_id: string;
|
|
12793
12864
|
day_no: number;
|
|
12865
|
+
is_clear_schedule?: boolean;
|
|
12794
12866
|
}>;
|
|
12795
12867
|
operator_id?: string;
|
|
12796
12868
|
};
|
|
@@ -12807,6 +12879,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
12807
12879
|
month: number;
|
|
12808
12880
|
user_id: string;
|
|
12809
12881
|
day_no: number;
|
|
12882
|
+
is_clear_schedule?: boolean | undefined;
|
|
12810
12883
|
}[] | undefined;
|
|
12811
12884
|
} | undefined;
|
|
12812
12885
|
}>;
|
|
@@ -12838,6 +12911,7 @@ declare abstract class Client$W extends Client$X {
|
|
|
12838
12911
|
month: number;
|
|
12839
12912
|
user_id: string;
|
|
12840
12913
|
day_no: number;
|
|
12914
|
+
is_clear_schedule?: boolean | undefined;
|
|
12841
12915
|
}[] | undefined;
|
|
12842
12916
|
} | undefined;
|
|
12843
12917
|
}>;
|
|
@@ -18136,6 +18210,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18136
18210
|
avatar_url?: string;
|
|
18137
18211
|
};
|
|
18138
18212
|
last_modified_time?: number;
|
|
18213
|
+
shared_url?: string;
|
|
18139
18214
|
record_url?: string;
|
|
18140
18215
|
}>;
|
|
18141
18216
|
};
|
|
@@ -18198,6 +18273,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18198
18273
|
avatar_url?: string | undefined;
|
|
18199
18274
|
} | undefined;
|
|
18200
18275
|
last_modified_time?: number | undefined;
|
|
18276
|
+
shared_url?: string | undefined;
|
|
18201
18277
|
record_url?: string | undefined;
|
|
18202
18278
|
}[] | undefined;
|
|
18203
18279
|
} | undefined;
|
|
@@ -18300,6 +18376,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18300
18376
|
avatar_url?: string | undefined;
|
|
18301
18377
|
} | undefined;
|
|
18302
18378
|
last_modified_time?: number | undefined;
|
|
18379
|
+
shared_url?: string | undefined;
|
|
18303
18380
|
record_url?: string | undefined;
|
|
18304
18381
|
}[] | undefined;
|
|
18305
18382
|
forbidden_record_ids?: string[] | undefined;
|
|
@@ -18366,6 +18443,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18366
18443
|
avatar_url?: string;
|
|
18367
18444
|
};
|
|
18368
18445
|
last_modified_time?: number;
|
|
18446
|
+
shared_url?: string;
|
|
18369
18447
|
record_url?: string;
|
|
18370
18448
|
}>;
|
|
18371
18449
|
};
|
|
@@ -18427,6 +18505,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18427
18505
|
avatar_url?: string | undefined;
|
|
18428
18506
|
} | undefined;
|
|
18429
18507
|
last_modified_time?: number | undefined;
|
|
18508
|
+
shared_url?: string | undefined;
|
|
18430
18509
|
record_url?: string | undefined;
|
|
18431
18510
|
}[] | undefined;
|
|
18432
18511
|
} | undefined;
|
|
@@ -18532,6 +18611,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18532
18611
|
avatar_url?: string | undefined;
|
|
18533
18612
|
} | undefined;
|
|
18534
18613
|
last_modified_time?: number | undefined;
|
|
18614
|
+
shared_url?: string | undefined;
|
|
18535
18615
|
record_url?: string | undefined;
|
|
18536
18616
|
} | undefined;
|
|
18537
18617
|
} | undefined;
|
|
@@ -18636,6 +18716,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18636
18716
|
avatar_url?: string | undefined;
|
|
18637
18717
|
} | undefined;
|
|
18638
18718
|
last_modified_time?: number | undefined;
|
|
18719
|
+
shared_url?: string | undefined;
|
|
18639
18720
|
record_url?: string | undefined;
|
|
18640
18721
|
} | undefined;
|
|
18641
18722
|
} | undefined;
|
|
@@ -18707,6 +18788,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18707
18788
|
avatar_url?: string | undefined;
|
|
18708
18789
|
} | undefined;
|
|
18709
18790
|
last_modified_time?: number | undefined;
|
|
18791
|
+
shared_url?: string | undefined;
|
|
18710
18792
|
record_url?: string | undefined;
|
|
18711
18793
|
}[] | undefined;
|
|
18712
18794
|
} | null, void, unknown>;
|
|
@@ -18793,6 +18875,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18793
18875
|
avatar_url?: string | undefined;
|
|
18794
18876
|
} | undefined;
|
|
18795
18877
|
last_modified_time?: number | undefined;
|
|
18878
|
+
shared_url?: string | undefined;
|
|
18796
18879
|
record_url?: string | undefined;
|
|
18797
18880
|
}[] | undefined;
|
|
18798
18881
|
} | undefined;
|
|
@@ -18881,6 +18964,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18881
18964
|
avatar_url?: string | undefined;
|
|
18882
18965
|
} | undefined;
|
|
18883
18966
|
last_modified_time?: number | undefined;
|
|
18967
|
+
shared_url?: string | undefined;
|
|
18884
18968
|
record_url?: string | undefined;
|
|
18885
18969
|
}[] | undefined;
|
|
18886
18970
|
total?: number | undefined;
|
|
@@ -18979,6 +19063,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
18979
19063
|
avatar_url?: string | undefined;
|
|
18980
19064
|
} | undefined;
|
|
18981
19065
|
last_modified_time?: number | undefined;
|
|
19066
|
+
shared_url?: string | undefined;
|
|
18982
19067
|
record_url?: string | undefined;
|
|
18983
19068
|
}[] | undefined;
|
|
18984
19069
|
has_more?: boolean | undefined;
|
|
@@ -19087,6 +19172,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
19087
19172
|
avatar_url?: string | undefined;
|
|
19088
19173
|
} | undefined;
|
|
19089
19174
|
last_modified_time?: number | undefined;
|
|
19175
|
+
shared_url?: string | undefined;
|
|
19090
19176
|
record_url?: string | undefined;
|
|
19091
19177
|
} | undefined;
|
|
19092
19178
|
} | undefined;
|
|
@@ -20896,6 +20982,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
20896
20982
|
avatar_url?: string;
|
|
20897
20983
|
};
|
|
20898
20984
|
last_modified_time?: number;
|
|
20985
|
+
shared_url?: string;
|
|
20899
20986
|
record_url?: string;
|
|
20900
20987
|
}>;
|
|
20901
20988
|
};
|
|
@@ -20958,6 +21045,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
20958
21045
|
avatar_url?: string | undefined;
|
|
20959
21046
|
} | undefined;
|
|
20960
21047
|
last_modified_time?: number | undefined;
|
|
21048
|
+
shared_url?: string | undefined;
|
|
20961
21049
|
record_url?: string | undefined;
|
|
20962
21050
|
}[] | undefined;
|
|
20963
21051
|
} | undefined;
|
|
@@ -21060,6 +21148,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21060
21148
|
avatar_url?: string | undefined;
|
|
21061
21149
|
} | undefined;
|
|
21062
21150
|
last_modified_time?: number | undefined;
|
|
21151
|
+
shared_url?: string | undefined;
|
|
21063
21152
|
record_url?: string | undefined;
|
|
21064
21153
|
}[] | undefined;
|
|
21065
21154
|
forbidden_record_ids?: string[] | undefined;
|
|
@@ -21126,6 +21215,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21126
21215
|
avatar_url?: string;
|
|
21127
21216
|
};
|
|
21128
21217
|
last_modified_time?: number;
|
|
21218
|
+
shared_url?: string;
|
|
21129
21219
|
record_url?: string;
|
|
21130
21220
|
}>;
|
|
21131
21221
|
};
|
|
@@ -21187,6 +21277,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21187
21277
|
avatar_url?: string | undefined;
|
|
21188
21278
|
} | undefined;
|
|
21189
21279
|
last_modified_time?: number | undefined;
|
|
21280
|
+
shared_url?: string | undefined;
|
|
21190
21281
|
record_url?: string | undefined;
|
|
21191
21282
|
}[] | undefined;
|
|
21192
21283
|
} | undefined;
|
|
@@ -21292,6 +21383,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21292
21383
|
avatar_url?: string | undefined;
|
|
21293
21384
|
} | undefined;
|
|
21294
21385
|
last_modified_time?: number | undefined;
|
|
21386
|
+
shared_url?: string | undefined;
|
|
21295
21387
|
record_url?: string | undefined;
|
|
21296
21388
|
} | undefined;
|
|
21297
21389
|
} | undefined;
|
|
@@ -21396,6 +21488,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21396
21488
|
avatar_url?: string | undefined;
|
|
21397
21489
|
} | undefined;
|
|
21398
21490
|
last_modified_time?: number | undefined;
|
|
21491
|
+
shared_url?: string | undefined;
|
|
21399
21492
|
record_url?: string | undefined;
|
|
21400
21493
|
} | undefined;
|
|
21401
21494
|
} | undefined;
|
|
@@ -21467,6 +21560,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21467
21560
|
avatar_url?: string | undefined;
|
|
21468
21561
|
} | undefined;
|
|
21469
21562
|
last_modified_time?: number | undefined;
|
|
21563
|
+
shared_url?: string | undefined;
|
|
21470
21564
|
record_url?: string | undefined;
|
|
21471
21565
|
}[] | undefined;
|
|
21472
21566
|
} | null, void, unknown>;
|
|
@@ -21553,6 +21647,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21553
21647
|
avatar_url?: string | undefined;
|
|
21554
21648
|
} | undefined;
|
|
21555
21649
|
last_modified_time?: number | undefined;
|
|
21650
|
+
shared_url?: string | undefined;
|
|
21556
21651
|
record_url?: string | undefined;
|
|
21557
21652
|
}[] | undefined;
|
|
21558
21653
|
} | undefined;
|
|
@@ -21641,6 +21736,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21641
21736
|
avatar_url?: string | undefined;
|
|
21642
21737
|
} | undefined;
|
|
21643
21738
|
last_modified_time?: number | undefined;
|
|
21739
|
+
shared_url?: string | undefined;
|
|
21644
21740
|
record_url?: string | undefined;
|
|
21645
21741
|
}[] | undefined;
|
|
21646
21742
|
total?: number | undefined;
|
|
@@ -21739,6 +21835,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21739
21835
|
avatar_url?: string | undefined;
|
|
21740
21836
|
} | undefined;
|
|
21741
21837
|
last_modified_time?: number | undefined;
|
|
21838
|
+
shared_url?: string | undefined;
|
|
21742
21839
|
record_url?: string | undefined;
|
|
21743
21840
|
}[] | undefined;
|
|
21744
21841
|
has_more?: boolean | undefined;
|
|
@@ -21847,6 +21944,7 @@ declare abstract class Client$R extends Client$S {
|
|
|
21847
21944
|
avatar_url?: string | undefined;
|
|
21848
21945
|
} | undefined;
|
|
21849
21946
|
last_modified_time?: number | undefined;
|
|
21947
|
+
shared_url?: string | undefined;
|
|
21850
21948
|
record_url?: string | undefined;
|
|
21851
21949
|
} | undefined;
|
|
21852
21950
|
} | undefined;
|
|
@@ -38028,6 +38126,9 @@ declare abstract class Client$I extends Client$J {
|
|
|
38028
38126
|
* 删除人员的任职信息
|
|
38029
38127
|
*/
|
|
38030
38128
|
delete: (payload?: {
|
|
38129
|
+
params?: {
|
|
38130
|
+
version_id?: string;
|
|
38131
|
+
};
|
|
38031
38132
|
path: {
|
|
38032
38133
|
job_data_id: string;
|
|
38033
38134
|
};
|
|
@@ -38735,6 +38836,28 @@ declare abstract class Client$I extends Client$J {
|
|
|
38735
38836
|
* 休假管理
|
|
38736
38837
|
*/
|
|
38737
38838
|
leave: {
|
|
38839
|
+
/**
|
|
38840
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=leave&apiName=calendar_by_scope&version=v1 click to debug }
|
|
38841
|
+
*
|
|
38842
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=calendar_by_scope&project=corehr&resource=leave&version=v1 document }
|
|
38843
|
+
*/
|
|
38844
|
+
calendarByScope: (payload?: {
|
|
38845
|
+
params?: {
|
|
38846
|
+
wk_department_id?: string;
|
|
38847
|
+
wk_country_region_id?: string;
|
|
38848
|
+
wk_employee_type_id?: string;
|
|
38849
|
+
wk_work_location_id?: string;
|
|
38850
|
+
wk_working_hours_type_id?: string;
|
|
38851
|
+
wk_job_family_id?: string;
|
|
38852
|
+
wk_company_id?: string;
|
|
38853
|
+
};
|
|
38854
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
38855
|
+
code?: number | undefined;
|
|
38856
|
+
msg?: string | undefined;
|
|
38857
|
+
data?: {
|
|
38858
|
+
calendar_wk_id?: string | undefined;
|
|
38859
|
+
} | undefined;
|
|
38860
|
+
}>;
|
|
38738
38861
|
/**
|
|
38739
38862
|
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=leave&apiName=leave_balances&version=v1 click to debug }
|
|
38740
38863
|
*
|
|
@@ -47175,6 +47298,9 @@ declare abstract class Client$I extends Client$J {
|
|
|
47175
47298
|
* 删除人员的任职信息
|
|
47176
47299
|
*/
|
|
47177
47300
|
delete: (payload?: {
|
|
47301
|
+
params?: {
|
|
47302
|
+
version_id?: string;
|
|
47303
|
+
};
|
|
47178
47304
|
path: {
|
|
47179
47305
|
job_data_id: string;
|
|
47180
47306
|
};
|
|
@@ -47882,6 +48008,28 @@ declare abstract class Client$I extends Client$J {
|
|
|
47882
48008
|
* 休假管理
|
|
47883
48009
|
*/
|
|
47884
48010
|
leave: {
|
|
48011
|
+
/**
|
|
48012
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=leave&apiName=calendar_by_scope&version=v1 click to debug }
|
|
48013
|
+
*
|
|
48014
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=calendar_by_scope&project=corehr&resource=leave&version=v1 document }
|
|
48015
|
+
*/
|
|
48016
|
+
calendarByScope: (payload?: {
|
|
48017
|
+
params?: {
|
|
48018
|
+
wk_department_id?: string;
|
|
48019
|
+
wk_country_region_id?: string;
|
|
48020
|
+
wk_employee_type_id?: string;
|
|
48021
|
+
wk_work_location_id?: string;
|
|
48022
|
+
wk_working_hours_type_id?: string;
|
|
48023
|
+
wk_job_family_id?: string;
|
|
48024
|
+
wk_company_id?: string;
|
|
48025
|
+
};
|
|
48026
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
48027
|
+
code?: number | undefined;
|
|
48028
|
+
msg?: string | undefined;
|
|
48029
|
+
data?: {
|
|
48030
|
+
calendar_wk_id?: string | undefined;
|
|
48031
|
+
} | undefined;
|
|
48032
|
+
}>;
|
|
47885
48033
|
/**
|
|
47886
48034
|
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=leave&apiName=leave_balances&version=v1 click to debug }
|
|
47887
48035
|
*
|
|
@@ -54047,6 +54195,25 @@ declare abstract class Client$I extends Client$J {
|
|
|
54047
54195
|
}[] | undefined;
|
|
54048
54196
|
} | undefined;
|
|
54049
54197
|
}>;
|
|
54198
|
+
/**
|
|
54199
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=department&apiName=delete&version=v2 click to debug }
|
|
54200
|
+
*
|
|
54201
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=delete&project=corehr&resource=department&version=v2 document }
|
|
54202
|
+
*
|
|
54203
|
+
* 删除部门数据
|
|
54204
|
+
*/
|
|
54205
|
+
delete: (payload?: {
|
|
54206
|
+
params?: {
|
|
54207
|
+
department_id_type?: "open_department_id" | "department_id" | "people_corehr_department_id";
|
|
54208
|
+
};
|
|
54209
|
+
path: {
|
|
54210
|
+
department_id: string;
|
|
54211
|
+
};
|
|
54212
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
54213
|
+
code?: number | undefined;
|
|
54214
|
+
msg?: string | undefined;
|
|
54215
|
+
data?: {} | undefined;
|
|
54216
|
+
}>;
|
|
54050
54217
|
/**
|
|
54051
54218
|
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=department&apiName=parents&version=v2 click to debug }
|
|
54052
54219
|
*
|
|
@@ -54078,6 +54245,57 @@ declare abstract class Client$I extends Client$J {
|
|
|
54078
54245
|
}[] | undefined;
|
|
54079
54246
|
} | undefined;
|
|
54080
54247
|
}>;
|
|
54248
|
+
/**
|
|
54249
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=department&apiName=patch&version=v2 click to debug }
|
|
54250
|
+
*
|
|
54251
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=corehr&resource=department&version=v2 document }
|
|
54252
|
+
*
|
|
54253
|
+
* 更新部门数据
|
|
54254
|
+
*/
|
|
54255
|
+
patch: (payload?: {
|
|
54256
|
+
data: {
|
|
54257
|
+
id?: string;
|
|
54258
|
+
sub_type?: {
|
|
54259
|
+
enum_name: string;
|
|
54260
|
+
};
|
|
54261
|
+
manager?: string;
|
|
54262
|
+
is_confidential?: boolean;
|
|
54263
|
+
hiberarchy_common?: {
|
|
54264
|
+
parent_id?: string;
|
|
54265
|
+
name?: Array<{
|
|
54266
|
+
lang: string;
|
|
54267
|
+
value: string;
|
|
54268
|
+
}>;
|
|
54269
|
+
active?: boolean;
|
|
54270
|
+
code?: string;
|
|
54271
|
+
description?: Array<{
|
|
54272
|
+
lang: string;
|
|
54273
|
+
value: string;
|
|
54274
|
+
}>;
|
|
54275
|
+
};
|
|
54276
|
+
effective_time: string;
|
|
54277
|
+
custom_fields?: Array<{
|
|
54278
|
+
field_name: string;
|
|
54279
|
+
value: string;
|
|
54280
|
+
}>;
|
|
54281
|
+
cost_center_id?: string;
|
|
54282
|
+
staffing_model?: {
|
|
54283
|
+
enum_name: string;
|
|
54284
|
+
};
|
|
54285
|
+
};
|
|
54286
|
+
params?: {
|
|
54287
|
+
client_token?: string;
|
|
54288
|
+
user_id_type?: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
54289
|
+
department_id_type?: "open_department_id" | "department_id" | "people_corehr_department_id";
|
|
54290
|
+
};
|
|
54291
|
+
path: {
|
|
54292
|
+
department_id: string;
|
|
54293
|
+
};
|
|
54294
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
54295
|
+
code?: number | undefined;
|
|
54296
|
+
msg?: string | undefined;
|
|
54297
|
+
data?: {} | undefined;
|
|
54298
|
+
}>;
|
|
54081
54299
|
/**
|
|
54082
54300
|
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=department&apiName=query_multi_timeline&version=v2 click to debug }
|
|
54083
54301
|
*
|
|
@@ -54387,11 +54605,13 @@ declare abstract class Client$I extends Client$J {
|
|
|
54387
54605
|
data?: {
|
|
54388
54606
|
items?: {
|
|
54389
54607
|
employment_id?: string | undefined;
|
|
54608
|
+
employment_id_v2?: string | undefined;
|
|
54390
54609
|
ats_application_id?: string | undefined;
|
|
54391
54610
|
prehire_id?: string | undefined;
|
|
54392
54611
|
employee_number?: string | undefined;
|
|
54393
54612
|
employee_type_id?: string | undefined;
|
|
54394
54613
|
department_id?: string | undefined;
|
|
54614
|
+
department_id_v2?: string | undefined;
|
|
54395
54615
|
job_level_id?: string | undefined;
|
|
54396
54616
|
job_level?: {
|
|
54397
54617
|
id?: string | undefined;
|
|
@@ -54453,29 +54673,6 @@ declare abstract class Client$I extends Client$J {
|
|
|
54453
54673
|
value: string;
|
|
54454
54674
|
}[] | undefined;
|
|
54455
54675
|
active: boolean;
|
|
54456
|
-
job_family_id_list?: string[] | undefined;
|
|
54457
|
-
cost_center_id?: string | undefined;
|
|
54458
|
-
job_id?: string | undefined;
|
|
54459
|
-
job_level_id_list?: string[] | undefined;
|
|
54460
|
-
employee_type_id_list?: string[] | undefined;
|
|
54461
|
-
job_grade_id_list?: string[] | undefined;
|
|
54462
|
-
work_location_id_list?: string[] | undefined;
|
|
54463
|
-
working_hours_type_id?: string | undefined;
|
|
54464
|
-
department_id: string;
|
|
54465
|
-
direct_leader_id?: string | undefined;
|
|
54466
|
-
dotted_line_leader_id?: string | undefined;
|
|
54467
|
-
is_key_position?: boolean | undefined;
|
|
54468
|
-
effective_time: string;
|
|
54469
|
-
expiration_time: string;
|
|
54470
|
-
custom_fields?: {
|
|
54471
|
-
custom_api_name: string;
|
|
54472
|
-
name?: {
|
|
54473
|
-
zh_cn?: string | undefined;
|
|
54474
|
-
en_us?: string | undefined;
|
|
54475
|
-
} | undefined;
|
|
54476
|
-
type?: number | undefined;
|
|
54477
|
-
value: string;
|
|
54478
|
-
}[] | undefined;
|
|
54479
54676
|
} | undefined;
|
|
54480
54677
|
job_id?: string | undefined;
|
|
54481
54678
|
job?: {
|
|
@@ -54515,6 +54712,8 @@ declare abstract class Client$I extends Client$J {
|
|
|
54515
54712
|
probation_end_date?: string | undefined;
|
|
54516
54713
|
direct_manager_id?: string | undefined;
|
|
54517
54714
|
dotted_line_manager_id?: string | undefined;
|
|
54715
|
+
direct_manager_id_v2?: string | undefined;
|
|
54716
|
+
dotted_line_manager_id_v2?: string | undefined;
|
|
54518
54717
|
employment_type: {
|
|
54519
54718
|
enum_name: string;
|
|
54520
54719
|
display?: Array<{
|
|
@@ -55468,6 +55667,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
55468
55667
|
work_calendar_id?: string | undefined;
|
|
55469
55668
|
department?: {
|
|
55470
55669
|
id?: string | undefined;
|
|
55670
|
+
id_v2?: string | undefined;
|
|
55471
55671
|
department_name?: {
|
|
55472
55672
|
lang: string;
|
|
55473
55673
|
value: string;
|
|
@@ -55475,6 +55675,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
55475
55675
|
} | undefined;
|
|
55476
55676
|
direct_manager?: {
|
|
55477
55677
|
employment_id?: string | undefined;
|
|
55678
|
+
employment_id_v2?: string | undefined;
|
|
55478
55679
|
employee_number?: string | undefined;
|
|
55479
55680
|
email_address?: string | undefined;
|
|
55480
55681
|
person_info?: {
|
|
@@ -55486,6 +55687,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
55486
55687
|
} | undefined;
|
|
55487
55688
|
dotted_line_manager?: {
|
|
55488
55689
|
employment_id?: string | undefined;
|
|
55690
|
+
employment_id_v2?: string | undefined;
|
|
55489
55691
|
employee_number?: string | undefined;
|
|
55490
55692
|
email_address?: string | undefined;
|
|
55491
55693
|
person_info?: {
|
|
@@ -56000,11 +56202,13 @@ declare abstract class Client$I extends Client$J {
|
|
|
56000
56202
|
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
56001
56203
|
items?: {
|
|
56002
56204
|
employment_id?: string | undefined;
|
|
56205
|
+
employment_id_v2?: string | undefined;
|
|
56003
56206
|
ats_application_id?: string | undefined;
|
|
56004
56207
|
prehire_id?: string | undefined;
|
|
56005
56208
|
employee_number?: string | undefined;
|
|
56006
56209
|
employee_type_id?: string | undefined;
|
|
56007
56210
|
department_id?: string | undefined;
|
|
56211
|
+
department_id_v2?: string | undefined;
|
|
56008
56212
|
job_level_id?: string | undefined;
|
|
56009
56213
|
job_level?: {
|
|
56010
56214
|
id?: string | undefined;
|
|
@@ -56066,29 +56270,6 @@ declare abstract class Client$I extends Client$J {
|
|
|
56066
56270
|
value: string;
|
|
56067
56271
|
}[] | undefined;
|
|
56068
56272
|
active: boolean;
|
|
56069
|
-
job_family_id_list?: string[] | undefined;
|
|
56070
|
-
cost_center_id?: string | undefined;
|
|
56071
|
-
job_id?: string | undefined;
|
|
56072
|
-
job_level_id_list?: string[] | undefined;
|
|
56073
|
-
employee_type_id_list?: string[] | undefined;
|
|
56074
|
-
job_grade_id_list?: string[] | undefined;
|
|
56075
|
-
work_location_id_list?: string[] | undefined;
|
|
56076
|
-
working_hours_type_id?: string | undefined;
|
|
56077
|
-
department_id: string;
|
|
56078
|
-
direct_leader_id?: string | undefined;
|
|
56079
|
-
dotted_line_leader_id?: string | undefined;
|
|
56080
|
-
is_key_position?: boolean | undefined;
|
|
56081
|
-
effective_time: string;
|
|
56082
|
-
expiration_time: string;
|
|
56083
|
-
custom_fields?: {
|
|
56084
|
-
custom_api_name: string;
|
|
56085
|
-
name?: {
|
|
56086
|
-
zh_cn?: string | undefined;
|
|
56087
|
-
en_us?: string | undefined;
|
|
56088
|
-
} | undefined;
|
|
56089
|
-
type?: number | undefined;
|
|
56090
|
-
value: string;
|
|
56091
|
-
}[] | undefined;
|
|
56092
56273
|
} | undefined;
|
|
56093
56274
|
job_id?: string | undefined;
|
|
56094
56275
|
job?: {
|
|
@@ -56128,6 +56309,8 @@ declare abstract class Client$I extends Client$J {
|
|
|
56128
56309
|
probation_end_date?: string | undefined;
|
|
56129
56310
|
direct_manager_id?: string | undefined;
|
|
56130
56311
|
dotted_line_manager_id?: string | undefined;
|
|
56312
|
+
direct_manager_id_v2?: string | undefined;
|
|
56313
|
+
dotted_line_manager_id_v2?: string | undefined;
|
|
56131
56314
|
employment_type: {
|
|
56132
56315
|
enum_name: string;
|
|
56133
56316
|
display?: Array<{
|
|
@@ -57081,6 +57264,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
57081
57264
|
work_calendar_id?: string | undefined;
|
|
57082
57265
|
department?: {
|
|
57083
57266
|
id?: string | undefined;
|
|
57267
|
+
id_v2?: string | undefined;
|
|
57084
57268
|
department_name?: {
|
|
57085
57269
|
lang: string;
|
|
57086
57270
|
value: string;
|
|
@@ -57088,6 +57272,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
57088
57272
|
} | undefined;
|
|
57089
57273
|
direct_manager?: {
|
|
57090
57274
|
employment_id?: string | undefined;
|
|
57275
|
+
employment_id_v2?: string | undefined;
|
|
57091
57276
|
employee_number?: string | undefined;
|
|
57092
57277
|
email_address?: string | undefined;
|
|
57093
57278
|
person_info?: {
|
|
@@ -57099,6 +57284,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
57099
57284
|
} | undefined;
|
|
57100
57285
|
dotted_line_manager?: {
|
|
57101
57286
|
employment_id?: string | undefined;
|
|
57287
|
+
employment_id_v2?: string | undefined;
|
|
57102
57288
|
employee_number?: string | undefined;
|
|
57103
57289
|
email_address?: string | undefined;
|
|
57104
57290
|
person_info?: {
|
|
@@ -57202,11 +57388,13 @@ declare abstract class Client$I extends Client$J {
|
|
|
57202
57388
|
data?: {
|
|
57203
57389
|
items?: {
|
|
57204
57390
|
employment_id?: string | undefined;
|
|
57391
|
+
employment_id_v2?: string | undefined;
|
|
57205
57392
|
ats_application_id?: string | undefined;
|
|
57206
57393
|
prehire_id?: string | undefined;
|
|
57207
57394
|
employee_number?: string | undefined;
|
|
57208
57395
|
employee_type_id?: string | undefined;
|
|
57209
57396
|
department_id?: string | undefined;
|
|
57397
|
+
department_id_v2?: string | undefined;
|
|
57210
57398
|
job_level_id?: string | undefined;
|
|
57211
57399
|
job_level?: {
|
|
57212
57400
|
id?: string | undefined;
|
|
@@ -57268,29 +57456,6 @@ declare abstract class Client$I extends Client$J {
|
|
|
57268
57456
|
value: string;
|
|
57269
57457
|
}[] | undefined;
|
|
57270
57458
|
active: boolean;
|
|
57271
|
-
job_family_id_list?: string[] | undefined;
|
|
57272
|
-
cost_center_id?: string | undefined;
|
|
57273
|
-
job_id?: string | undefined;
|
|
57274
|
-
job_level_id_list?: string[] | undefined;
|
|
57275
|
-
employee_type_id_list?: string[] | undefined;
|
|
57276
|
-
job_grade_id_list?: string[] | undefined;
|
|
57277
|
-
work_location_id_list?: string[] | undefined;
|
|
57278
|
-
working_hours_type_id?: string | undefined;
|
|
57279
|
-
department_id: string;
|
|
57280
|
-
direct_leader_id?: string | undefined;
|
|
57281
|
-
dotted_line_leader_id?: string | undefined;
|
|
57282
|
-
is_key_position?: boolean | undefined;
|
|
57283
|
-
effective_time: string;
|
|
57284
|
-
expiration_time: string;
|
|
57285
|
-
custom_fields?: {
|
|
57286
|
-
custom_api_name: string;
|
|
57287
|
-
name?: {
|
|
57288
|
-
zh_cn?: string | undefined;
|
|
57289
|
-
en_us?: string | undefined;
|
|
57290
|
-
} | undefined;
|
|
57291
|
-
type?: number | undefined;
|
|
57292
|
-
value: string;
|
|
57293
|
-
}[] | undefined;
|
|
57294
57459
|
} | undefined;
|
|
57295
57460
|
job_id?: string | undefined;
|
|
57296
57461
|
job?: {
|
|
@@ -57330,6 +57495,8 @@ declare abstract class Client$I extends Client$J {
|
|
|
57330
57495
|
probation_end_date?: string | undefined;
|
|
57331
57496
|
direct_manager_id?: string | undefined;
|
|
57332
57497
|
dotted_line_manager_id?: string | undefined;
|
|
57498
|
+
direct_manager_id_v2?: string | undefined;
|
|
57499
|
+
dotted_line_manager_id_v2?: string | undefined;
|
|
57333
57500
|
employment_type: {
|
|
57334
57501
|
enum_name: string;
|
|
57335
57502
|
display?: Array<{
|
|
@@ -58283,6 +58450,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
58283
58450
|
work_calendar_id?: string | undefined;
|
|
58284
58451
|
department?: {
|
|
58285
58452
|
id?: string | undefined;
|
|
58453
|
+
id_v2?: string | undefined;
|
|
58286
58454
|
department_name?: {
|
|
58287
58455
|
lang: string;
|
|
58288
58456
|
value: string;
|
|
@@ -58290,6 +58458,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
58290
58458
|
} | undefined;
|
|
58291
58459
|
direct_manager?: {
|
|
58292
58460
|
employment_id?: string | undefined;
|
|
58461
|
+
employment_id_v2?: string | undefined;
|
|
58293
58462
|
employee_number?: string | undefined;
|
|
58294
58463
|
email_address?: string | undefined;
|
|
58295
58464
|
person_info?: {
|
|
@@ -58301,6 +58470,7 @@ declare abstract class Client$I extends Client$J {
|
|
|
58301
58470
|
} | undefined;
|
|
58302
58471
|
dotted_line_manager?: {
|
|
58303
58472
|
employment_id?: string | undefined;
|
|
58473
|
+
employment_id_v2?: string | undefined;
|
|
58304
58474
|
employee_number?: string | undefined;
|
|
58305
58475
|
email_address?: string | undefined;
|
|
58306
58476
|
person_info?: {
|
|
@@ -58832,7 +59002,19 @@ declare abstract class Client$I extends Client$J {
|
|
|
58832
59002
|
target_service_company?: string | undefined;
|
|
58833
59003
|
original_position?: string | undefined;
|
|
58834
59004
|
target_position?: string | undefined;
|
|
59005
|
+
original_social_security_city?: string | undefined;
|
|
59006
|
+
target_social_security_city?: string | undefined;
|
|
58835
59007
|
} | undefined;
|
|
59008
|
+
is_adjust_salary?: boolean | undefined;
|
|
59009
|
+
custom_fields?: {
|
|
59010
|
+
custom_api_name: string;
|
|
59011
|
+
name?: {
|
|
59012
|
+
zh_cn?: string | undefined;
|
|
59013
|
+
en_us?: string | undefined;
|
|
59014
|
+
} | undefined;
|
|
59015
|
+
type?: number | undefined;
|
|
59016
|
+
value: string;
|
|
59017
|
+
}[] | undefined;
|
|
58836
59018
|
}[] | undefined;
|
|
58837
59019
|
} | null, void, unknown>;
|
|
58838
59020
|
}>;
|
|
@@ -58972,7 +59154,19 @@ declare abstract class Client$I extends Client$J {
|
|
|
58972
59154
|
target_service_company?: string | undefined;
|
|
58973
59155
|
original_position?: string | undefined;
|
|
58974
59156
|
target_position?: string | undefined;
|
|
59157
|
+
original_social_security_city?: string | undefined;
|
|
59158
|
+
target_social_security_city?: string | undefined;
|
|
58975
59159
|
} | undefined;
|
|
59160
|
+
is_adjust_salary?: boolean | undefined;
|
|
59161
|
+
custom_fields?: {
|
|
59162
|
+
custom_api_name: string;
|
|
59163
|
+
name?: {
|
|
59164
|
+
zh_cn?: string | undefined;
|
|
59165
|
+
en_us?: string | undefined;
|
|
59166
|
+
} | undefined;
|
|
59167
|
+
type?: number | undefined;
|
|
59168
|
+
value: string;
|
|
59169
|
+
}[] | undefined;
|
|
58976
59170
|
}[] | undefined;
|
|
58977
59171
|
has_more?: boolean | undefined;
|
|
58978
59172
|
page_token?: string | undefined;
|
|
@@ -120314,7 +120508,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
120314
120508
|
}>;
|
|
120315
120509
|
};
|
|
120316
120510
|
/**
|
|
120317
|
-
*
|
|
120511
|
+
* 上传
|
|
120318
120512
|
*/
|
|
120319
120513
|
file: {
|
|
120320
120514
|
/**
|
|
@@ -122270,7 +122464,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
122270
122464
|
}>;
|
|
122271
122465
|
};
|
|
122272
122466
|
/**
|
|
122273
|
-
*
|
|
122467
|
+
* 上传
|
|
122274
122468
|
*/
|
|
122275
122469
|
file: {
|
|
122276
122470
|
/**
|
|
@@ -129065,7 +129259,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
129065
129259
|
}>;
|
|
129066
129260
|
};
|
|
129067
129261
|
/**
|
|
129068
|
-
*
|
|
129262
|
+
* 投递
|
|
129069
129263
|
*/
|
|
129070
129264
|
application: {
|
|
129071
129265
|
/**
|
|
@@ -132710,6 +132904,84 @@ declare abstract class Client$u extends Client$v {
|
|
|
132710
132904
|
} | undefined;
|
|
132711
132905
|
}>;
|
|
132712
132906
|
};
|
|
132907
|
+
/**
|
|
132908
|
+
* interviewer
|
|
132909
|
+
*/
|
|
132910
|
+
interviewer: {
|
|
132911
|
+
listWithIterator: (payload?: {
|
|
132912
|
+
params?: {
|
|
132913
|
+
page_size?: number;
|
|
132914
|
+
page_token?: string;
|
|
132915
|
+
user_ids?: number;
|
|
132916
|
+
verify_status?: number;
|
|
132917
|
+
earliest_update_time?: string;
|
|
132918
|
+
latest_update_time?: string;
|
|
132919
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
132920
|
+
};
|
|
132921
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
132922
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
132923
|
+
items?: {
|
|
132924
|
+
user_id?: string | undefined;
|
|
132925
|
+
verify_status?: number | undefined;
|
|
132926
|
+
}[] | undefined;
|
|
132927
|
+
} | null, void, unknown>;
|
|
132928
|
+
}>;
|
|
132929
|
+
/**
|
|
132930
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=interviewer&apiName=list&version=v1 click to debug }
|
|
132931
|
+
*
|
|
132932
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=interviewer&version=v1 document }
|
|
132933
|
+
*/
|
|
132934
|
+
list: (payload?: {
|
|
132935
|
+
params?: {
|
|
132936
|
+
page_size?: number;
|
|
132937
|
+
page_token?: string;
|
|
132938
|
+
user_ids?: number;
|
|
132939
|
+
verify_status?: number;
|
|
132940
|
+
earliest_update_time?: string;
|
|
132941
|
+
latest_update_time?: string;
|
|
132942
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
132943
|
+
};
|
|
132944
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
132945
|
+
code?: number | undefined;
|
|
132946
|
+
msg?: string | undefined;
|
|
132947
|
+
data?: {
|
|
132948
|
+
items?: {
|
|
132949
|
+
user_id?: string | undefined;
|
|
132950
|
+
verify_status?: number | undefined;
|
|
132951
|
+
}[] | undefined;
|
|
132952
|
+
page_token?: string | undefined;
|
|
132953
|
+
has_more?: boolean | undefined;
|
|
132954
|
+
} | undefined;
|
|
132955
|
+
}>;
|
|
132956
|
+
/**
|
|
132957
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=interviewer&apiName=patch&version=v1 click to debug }
|
|
132958
|
+
*
|
|
132959
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=hire&resource=interviewer&version=v1 document }
|
|
132960
|
+
*/
|
|
132961
|
+
patch: (payload?: {
|
|
132962
|
+
data: {
|
|
132963
|
+
interviewer: {
|
|
132964
|
+
user_id?: string;
|
|
132965
|
+
verify_status?: number;
|
|
132966
|
+
};
|
|
132967
|
+
};
|
|
132968
|
+
params?: {
|
|
132969
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
132970
|
+
};
|
|
132971
|
+
path?: {
|
|
132972
|
+
interviewer_id?: string;
|
|
132973
|
+
};
|
|
132974
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
132975
|
+
code?: number | undefined;
|
|
132976
|
+
msg?: string | undefined;
|
|
132977
|
+
data?: {
|
|
132978
|
+
interviewer?: {
|
|
132979
|
+
user_id?: string | undefined;
|
|
132980
|
+
verify_status?: number | undefined;
|
|
132981
|
+
} | undefined;
|
|
132982
|
+
} | undefined;
|
|
132983
|
+
}>;
|
|
132984
|
+
};
|
|
132713
132985
|
/**
|
|
132714
132986
|
* 职位
|
|
132715
132987
|
*/
|
|
@@ -135116,6 +135388,41 @@ declare abstract class Client$u extends Client$v {
|
|
|
135116
135388
|
} | undefined;
|
|
135117
135389
|
}>;
|
|
135118
135390
|
};
|
|
135391
|
+
/**
|
|
135392
|
+
* minutes
|
|
135393
|
+
*/
|
|
135394
|
+
minutes: {
|
|
135395
|
+
/**
|
|
135396
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=minutes&apiName=get&version=v1 click to debug }
|
|
135397
|
+
*
|
|
135398
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=hire&resource=minutes&version=v1 document }
|
|
135399
|
+
*/
|
|
135400
|
+
get: (payload?: {
|
|
135401
|
+
params: {
|
|
135402
|
+
interview_id: string;
|
|
135403
|
+
page_token?: string;
|
|
135404
|
+
page_size?: number;
|
|
135405
|
+
};
|
|
135406
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
135407
|
+
code?: number | undefined;
|
|
135408
|
+
msg?: string | undefined;
|
|
135409
|
+
data?: {
|
|
135410
|
+
minutes?: {
|
|
135411
|
+
sentences?: {
|
|
135412
|
+
content?: string | undefined;
|
|
135413
|
+
speak_time?: string | undefined;
|
|
135414
|
+
user_type?: number | undefined;
|
|
135415
|
+
speaker_name?: {
|
|
135416
|
+
zh_cn?: string | undefined;
|
|
135417
|
+
en_us?: string | undefined;
|
|
135418
|
+
} | undefined;
|
|
135419
|
+
}[] | undefined;
|
|
135420
|
+
} | undefined;
|
|
135421
|
+
page_token?: string | undefined;
|
|
135422
|
+
has_more?: boolean | undefined;
|
|
135423
|
+
} | undefined;
|
|
135424
|
+
}>;
|
|
135425
|
+
};
|
|
135119
135426
|
/**
|
|
135120
135427
|
* 备注
|
|
135121
135428
|
*/
|
|
@@ -137415,6 +137722,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
137415
137722
|
email?: string | undefined;
|
|
137416
137723
|
identification_type?: number | undefined;
|
|
137417
137724
|
identification_number?: string | undefined;
|
|
137725
|
+
is_onboarded?: boolean | undefined;
|
|
137418
137726
|
}[] | undefined;
|
|
137419
137727
|
} | undefined;
|
|
137420
137728
|
}>;
|
|
@@ -137607,7 +137915,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
137607
137915
|
operator_account_type?: number;
|
|
137608
137916
|
resume_attachment_id?: string;
|
|
137609
137917
|
basic_info: {
|
|
137610
|
-
name
|
|
137918
|
+
name?: string;
|
|
137611
137919
|
mobile?: string;
|
|
137612
137920
|
mobile_country_code?: string;
|
|
137613
137921
|
email?: string;
|
|
@@ -139091,6 +139399,102 @@ declare abstract class Client$u extends Client$v {
|
|
|
139091
139399
|
} | undefined;
|
|
139092
139400
|
}>;
|
|
139093
139401
|
};
|
|
139402
|
+
/**
|
|
139403
|
+
* 权限
|
|
139404
|
+
*/
|
|
139405
|
+
userRole: {
|
|
139406
|
+
listWithIterator: (payload?: {
|
|
139407
|
+
params?: {
|
|
139408
|
+
page_token?: string;
|
|
139409
|
+
page_size?: number;
|
|
139410
|
+
user_id?: string;
|
|
139411
|
+
role_id?: string;
|
|
139412
|
+
update_start_time?: string;
|
|
139413
|
+
update_end_time?: string;
|
|
139414
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
139415
|
+
};
|
|
139416
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
139417
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
139418
|
+
items?: {
|
|
139419
|
+
user_id?: string | undefined;
|
|
139420
|
+
role_id?: string | undefined;
|
|
139421
|
+
modify_time?: string | undefined;
|
|
139422
|
+
role_name?: {
|
|
139423
|
+
zh_cn?: string | undefined;
|
|
139424
|
+
en_us?: string | undefined;
|
|
139425
|
+
} | undefined;
|
|
139426
|
+
role_description?: {
|
|
139427
|
+
zh_cn?: string | undefined;
|
|
139428
|
+
en_us?: string | undefined;
|
|
139429
|
+
} | undefined;
|
|
139430
|
+
business_management_scopes?: {
|
|
139431
|
+
entity?: {
|
|
139432
|
+
code?: string | undefined;
|
|
139433
|
+
name?: {
|
|
139434
|
+
zh_cn?: string | undefined;
|
|
139435
|
+
en_us?: string | undefined;
|
|
139436
|
+
} | undefined;
|
|
139437
|
+
} | undefined;
|
|
139438
|
+
scope_rule?: {
|
|
139439
|
+
rule_type?: number | undefined;
|
|
139440
|
+
} | undefined;
|
|
139441
|
+
}[] | undefined;
|
|
139442
|
+
}[] | undefined;
|
|
139443
|
+
} | null, void, unknown>;
|
|
139444
|
+
}>;
|
|
139445
|
+
/**
|
|
139446
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=user_role&apiName=list&version=v1 click to debug }
|
|
139447
|
+
*
|
|
139448
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/user_role/list document }
|
|
139449
|
+
*
|
|
139450
|
+
* 获取用户角色列表
|
|
139451
|
+
*
|
|
139452
|
+
* 获取用户角色列表
|
|
139453
|
+
*/
|
|
139454
|
+
list: (payload?: {
|
|
139455
|
+
params?: {
|
|
139456
|
+
page_token?: string;
|
|
139457
|
+
page_size?: number;
|
|
139458
|
+
user_id?: string;
|
|
139459
|
+
role_id?: string;
|
|
139460
|
+
update_start_time?: string;
|
|
139461
|
+
update_end_time?: string;
|
|
139462
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
139463
|
+
};
|
|
139464
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
139465
|
+
code?: number | undefined;
|
|
139466
|
+
msg?: string | undefined;
|
|
139467
|
+
data?: {
|
|
139468
|
+
items?: {
|
|
139469
|
+
user_id?: string | undefined;
|
|
139470
|
+
role_id?: string | undefined;
|
|
139471
|
+
modify_time?: string | undefined;
|
|
139472
|
+
role_name?: {
|
|
139473
|
+
zh_cn?: string | undefined;
|
|
139474
|
+
en_us?: string | undefined;
|
|
139475
|
+
} | undefined;
|
|
139476
|
+
role_description?: {
|
|
139477
|
+
zh_cn?: string | undefined;
|
|
139478
|
+
en_us?: string | undefined;
|
|
139479
|
+
} | undefined;
|
|
139480
|
+
business_management_scopes?: {
|
|
139481
|
+
entity?: {
|
|
139482
|
+
code?: string | undefined;
|
|
139483
|
+
name?: {
|
|
139484
|
+
zh_cn?: string | undefined;
|
|
139485
|
+
en_us?: string | undefined;
|
|
139486
|
+
} | undefined;
|
|
139487
|
+
} | undefined;
|
|
139488
|
+
scope_rule?: {
|
|
139489
|
+
rule_type?: number | undefined;
|
|
139490
|
+
} | undefined;
|
|
139491
|
+
}[] | undefined;
|
|
139492
|
+
}[] | undefined;
|
|
139493
|
+
has_more?: boolean | undefined;
|
|
139494
|
+
page_token?: string | undefined;
|
|
139495
|
+
} | undefined;
|
|
139496
|
+
}>;
|
|
139497
|
+
};
|
|
139094
139498
|
/**
|
|
139095
139499
|
* website.channel
|
|
139096
139500
|
*/
|
|
@@ -140807,7 +141211,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
140807
141211
|
}>;
|
|
140808
141212
|
};
|
|
140809
141213
|
/**
|
|
140810
|
-
*
|
|
141214
|
+
* 投递
|
|
140811
141215
|
*/
|
|
140812
141216
|
application: {
|
|
140813
141217
|
/**
|
|
@@ -144452,6 +144856,84 @@ declare abstract class Client$u extends Client$v {
|
|
|
144452
144856
|
} | undefined;
|
|
144453
144857
|
}>;
|
|
144454
144858
|
};
|
|
144859
|
+
/**
|
|
144860
|
+
* interviewer
|
|
144861
|
+
*/
|
|
144862
|
+
interviewer: {
|
|
144863
|
+
listWithIterator: (payload?: {
|
|
144864
|
+
params?: {
|
|
144865
|
+
page_size?: number;
|
|
144866
|
+
page_token?: string;
|
|
144867
|
+
user_ids?: number;
|
|
144868
|
+
verify_status?: number;
|
|
144869
|
+
earliest_update_time?: string;
|
|
144870
|
+
latest_update_time?: string;
|
|
144871
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
144872
|
+
};
|
|
144873
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
144874
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
144875
|
+
items?: {
|
|
144876
|
+
user_id?: string | undefined;
|
|
144877
|
+
verify_status?: number | undefined;
|
|
144878
|
+
}[] | undefined;
|
|
144879
|
+
} | null, void, unknown>;
|
|
144880
|
+
}>;
|
|
144881
|
+
/**
|
|
144882
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=interviewer&apiName=list&version=v1 click to debug }
|
|
144883
|
+
*
|
|
144884
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=list&project=hire&resource=interviewer&version=v1 document }
|
|
144885
|
+
*/
|
|
144886
|
+
list: (payload?: {
|
|
144887
|
+
params?: {
|
|
144888
|
+
page_size?: number;
|
|
144889
|
+
page_token?: string;
|
|
144890
|
+
user_ids?: number;
|
|
144891
|
+
verify_status?: number;
|
|
144892
|
+
earliest_update_time?: string;
|
|
144893
|
+
latest_update_time?: string;
|
|
144894
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
144895
|
+
};
|
|
144896
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
144897
|
+
code?: number | undefined;
|
|
144898
|
+
msg?: string | undefined;
|
|
144899
|
+
data?: {
|
|
144900
|
+
items?: {
|
|
144901
|
+
user_id?: string | undefined;
|
|
144902
|
+
verify_status?: number | undefined;
|
|
144903
|
+
}[] | undefined;
|
|
144904
|
+
page_token?: string | undefined;
|
|
144905
|
+
has_more?: boolean | undefined;
|
|
144906
|
+
} | undefined;
|
|
144907
|
+
}>;
|
|
144908
|
+
/**
|
|
144909
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=interviewer&apiName=patch&version=v1 click to debug }
|
|
144910
|
+
*
|
|
144911
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=patch&project=hire&resource=interviewer&version=v1 document }
|
|
144912
|
+
*/
|
|
144913
|
+
patch: (payload?: {
|
|
144914
|
+
data: {
|
|
144915
|
+
interviewer: {
|
|
144916
|
+
user_id?: string;
|
|
144917
|
+
verify_status?: number;
|
|
144918
|
+
};
|
|
144919
|
+
};
|
|
144920
|
+
params?: {
|
|
144921
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
144922
|
+
};
|
|
144923
|
+
path?: {
|
|
144924
|
+
interviewer_id?: string;
|
|
144925
|
+
};
|
|
144926
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
144927
|
+
code?: number | undefined;
|
|
144928
|
+
msg?: string | undefined;
|
|
144929
|
+
data?: {
|
|
144930
|
+
interviewer?: {
|
|
144931
|
+
user_id?: string | undefined;
|
|
144932
|
+
verify_status?: number | undefined;
|
|
144933
|
+
} | undefined;
|
|
144934
|
+
} | undefined;
|
|
144935
|
+
}>;
|
|
144936
|
+
};
|
|
144455
144937
|
/**
|
|
144456
144938
|
* 职位
|
|
144457
144939
|
*/
|
|
@@ -146858,6 +147340,41 @@ declare abstract class Client$u extends Client$v {
|
|
|
146858
147340
|
} | undefined;
|
|
146859
147341
|
}>;
|
|
146860
147342
|
};
|
|
147343
|
+
/**
|
|
147344
|
+
* minutes
|
|
147345
|
+
*/
|
|
147346
|
+
minutes: {
|
|
147347
|
+
/**
|
|
147348
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=minutes&apiName=get&version=v1 click to debug }
|
|
147349
|
+
*
|
|
147350
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=hire&resource=minutes&version=v1 document }
|
|
147351
|
+
*/
|
|
147352
|
+
get: (payload?: {
|
|
147353
|
+
params: {
|
|
147354
|
+
interview_id: string;
|
|
147355
|
+
page_token?: string;
|
|
147356
|
+
page_size?: number;
|
|
147357
|
+
};
|
|
147358
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
147359
|
+
code?: number | undefined;
|
|
147360
|
+
msg?: string | undefined;
|
|
147361
|
+
data?: {
|
|
147362
|
+
minutes?: {
|
|
147363
|
+
sentences?: {
|
|
147364
|
+
content?: string | undefined;
|
|
147365
|
+
speak_time?: string | undefined;
|
|
147366
|
+
user_type?: number | undefined;
|
|
147367
|
+
speaker_name?: {
|
|
147368
|
+
zh_cn?: string | undefined;
|
|
147369
|
+
en_us?: string | undefined;
|
|
147370
|
+
} | undefined;
|
|
147371
|
+
}[] | undefined;
|
|
147372
|
+
} | undefined;
|
|
147373
|
+
page_token?: string | undefined;
|
|
147374
|
+
has_more?: boolean | undefined;
|
|
147375
|
+
} | undefined;
|
|
147376
|
+
}>;
|
|
147377
|
+
};
|
|
146861
147378
|
/**
|
|
146862
147379
|
* 备注
|
|
146863
147380
|
*/
|
|
@@ -149157,6 +149674,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
149157
149674
|
email?: string | undefined;
|
|
149158
149675
|
identification_type?: number | undefined;
|
|
149159
149676
|
identification_number?: string | undefined;
|
|
149677
|
+
is_onboarded?: boolean | undefined;
|
|
149160
149678
|
}[] | undefined;
|
|
149161
149679
|
} | undefined;
|
|
149162
149680
|
}>;
|
|
@@ -149349,7 +149867,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
149349
149867
|
operator_account_type?: number;
|
|
149350
149868
|
resume_attachment_id?: string;
|
|
149351
149869
|
basic_info: {
|
|
149352
|
-
name
|
|
149870
|
+
name?: string;
|
|
149353
149871
|
mobile?: string;
|
|
149354
149872
|
mobile_country_code?: string;
|
|
149355
149873
|
email?: string;
|
|
@@ -150833,6 +151351,102 @@ declare abstract class Client$u extends Client$v {
|
|
|
150833
151351
|
} | undefined;
|
|
150834
151352
|
}>;
|
|
150835
151353
|
};
|
|
151354
|
+
/**
|
|
151355
|
+
* 权限
|
|
151356
|
+
*/
|
|
151357
|
+
userRole: {
|
|
151358
|
+
listWithIterator: (payload?: {
|
|
151359
|
+
params?: {
|
|
151360
|
+
page_token?: string;
|
|
151361
|
+
page_size?: number;
|
|
151362
|
+
user_id?: string;
|
|
151363
|
+
role_id?: string;
|
|
151364
|
+
update_start_time?: string;
|
|
151365
|
+
update_end_time?: string;
|
|
151366
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
151367
|
+
};
|
|
151368
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
151369
|
+
[Symbol.asyncIterator](): AsyncGenerator<{
|
|
151370
|
+
items?: {
|
|
151371
|
+
user_id?: string | undefined;
|
|
151372
|
+
role_id?: string | undefined;
|
|
151373
|
+
modify_time?: string | undefined;
|
|
151374
|
+
role_name?: {
|
|
151375
|
+
zh_cn?: string | undefined;
|
|
151376
|
+
en_us?: string | undefined;
|
|
151377
|
+
} | undefined;
|
|
151378
|
+
role_description?: {
|
|
151379
|
+
zh_cn?: string | undefined;
|
|
151380
|
+
en_us?: string | undefined;
|
|
151381
|
+
} | undefined;
|
|
151382
|
+
business_management_scopes?: {
|
|
151383
|
+
entity?: {
|
|
151384
|
+
code?: string | undefined;
|
|
151385
|
+
name?: {
|
|
151386
|
+
zh_cn?: string | undefined;
|
|
151387
|
+
en_us?: string | undefined;
|
|
151388
|
+
} | undefined;
|
|
151389
|
+
} | undefined;
|
|
151390
|
+
scope_rule?: {
|
|
151391
|
+
rule_type?: number | undefined;
|
|
151392
|
+
} | undefined;
|
|
151393
|
+
}[] | undefined;
|
|
151394
|
+
}[] | undefined;
|
|
151395
|
+
} | null, void, unknown>;
|
|
151396
|
+
}>;
|
|
151397
|
+
/**
|
|
151398
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=user_role&apiName=list&version=v1 click to debug }
|
|
151399
|
+
*
|
|
151400
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/user_role/list document }
|
|
151401
|
+
*
|
|
151402
|
+
* 获取用户角色列表
|
|
151403
|
+
*
|
|
151404
|
+
* 获取用户角色列表
|
|
151405
|
+
*/
|
|
151406
|
+
list: (payload?: {
|
|
151407
|
+
params?: {
|
|
151408
|
+
page_token?: string;
|
|
151409
|
+
page_size?: number;
|
|
151410
|
+
user_id?: string;
|
|
151411
|
+
role_id?: string;
|
|
151412
|
+
update_start_time?: string;
|
|
151413
|
+
update_end_time?: string;
|
|
151414
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
151415
|
+
};
|
|
151416
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
151417
|
+
code?: number | undefined;
|
|
151418
|
+
msg?: string | undefined;
|
|
151419
|
+
data?: {
|
|
151420
|
+
items?: {
|
|
151421
|
+
user_id?: string | undefined;
|
|
151422
|
+
role_id?: string | undefined;
|
|
151423
|
+
modify_time?: string | undefined;
|
|
151424
|
+
role_name?: {
|
|
151425
|
+
zh_cn?: string | undefined;
|
|
151426
|
+
en_us?: string | undefined;
|
|
151427
|
+
} | undefined;
|
|
151428
|
+
role_description?: {
|
|
151429
|
+
zh_cn?: string | undefined;
|
|
151430
|
+
en_us?: string | undefined;
|
|
151431
|
+
} | undefined;
|
|
151432
|
+
business_management_scopes?: {
|
|
151433
|
+
entity?: {
|
|
151434
|
+
code?: string | undefined;
|
|
151435
|
+
name?: {
|
|
151436
|
+
zh_cn?: string | undefined;
|
|
151437
|
+
en_us?: string | undefined;
|
|
151438
|
+
} | undefined;
|
|
151439
|
+
} | undefined;
|
|
151440
|
+
scope_rule?: {
|
|
151441
|
+
rule_type?: number | undefined;
|
|
151442
|
+
} | undefined;
|
|
151443
|
+
}[] | undefined;
|
|
151444
|
+
}[] | undefined;
|
|
151445
|
+
has_more?: boolean | undefined;
|
|
151446
|
+
page_token?: string | undefined;
|
|
151447
|
+
} | undefined;
|
|
151448
|
+
}>;
|
|
151449
|
+
};
|
|
150836
151450
|
/**
|
|
150837
151451
|
* website.channel
|
|
150838
151452
|
*/
|
|
@@ -158027,6 +158641,31 @@ declare abstract class Client$s extends Client$t {
|
|
|
158027
158641
|
* feed_card
|
|
158028
158642
|
*/
|
|
158029
158643
|
feedCard: {
|
|
158644
|
+
/**
|
|
158645
|
+
* {@link https://open.feishu.cn/api-explorer?project=im&resource=feed_card&apiName=bot_time_sentive&version=v2 click to debug }
|
|
158646
|
+
*
|
|
158647
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=bot_time_sentive&project=im&resource=feed_card&version=v2 document }
|
|
158648
|
+
*/
|
|
158649
|
+
botTimeSentive: (payload?: {
|
|
158650
|
+
data: {
|
|
158651
|
+
bot_id?: string;
|
|
158652
|
+
time_sensitive: boolean;
|
|
158653
|
+
user_ids: Array<string>;
|
|
158654
|
+
};
|
|
158655
|
+
params: {
|
|
158656
|
+
user_id_type: "open_id" | "user_id" | "union_id";
|
|
158657
|
+
};
|
|
158658
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
158659
|
+
code?: number | undefined;
|
|
158660
|
+
msg?: string | undefined;
|
|
158661
|
+
data?: {
|
|
158662
|
+
failed_user_reasons?: {
|
|
158663
|
+
error_code?: number | undefined;
|
|
158664
|
+
error_message?: string | undefined;
|
|
158665
|
+
user_id?: string | undefined;
|
|
158666
|
+
}[] | undefined;
|
|
158667
|
+
} | undefined;
|
|
158668
|
+
}>;
|
|
158030
158669
|
/**
|
|
158031
158670
|
* {@link https://open.feishu.cn/api-explorer?project=im&resource=feed_card&apiName=patch&version=v2 click to debug }
|
|
158032
158671
|
*
|
|
@@ -160844,6 +161483,52 @@ declare abstract class Client$q extends Client$r {
|
|
|
160844
161483
|
data?: {} | undefined;
|
|
160845
161484
|
}>;
|
|
160846
161485
|
};
|
|
161486
|
+
/**
|
|
161487
|
+
* user_mailbox.message
|
|
161488
|
+
*/
|
|
161489
|
+
userMailboxMessage: {
|
|
161490
|
+
/**
|
|
161491
|
+
* {@link https://open.feishu.cn/api-explorer?project=mail&resource=user_mailbox.message&apiName=send&version=v1 click to debug }
|
|
161492
|
+
*
|
|
161493
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=send&project=mail&resource=user_mailbox.message&version=v1 document }
|
|
161494
|
+
*/
|
|
161495
|
+
send: (payload?: {
|
|
161496
|
+
data?: {
|
|
161497
|
+
raw?: string;
|
|
161498
|
+
subject?: string;
|
|
161499
|
+
to?: Array<{
|
|
161500
|
+
mail_address: string;
|
|
161501
|
+
name?: string;
|
|
161502
|
+
}>;
|
|
161503
|
+
cc?: Array<{
|
|
161504
|
+
mail_address: string;
|
|
161505
|
+
name?: string;
|
|
161506
|
+
}>;
|
|
161507
|
+
bcc?: Array<{
|
|
161508
|
+
mail_address: string;
|
|
161509
|
+
name?: string;
|
|
161510
|
+
}>;
|
|
161511
|
+
head_from?: {
|
|
161512
|
+
mail_address?: string;
|
|
161513
|
+
name?: string;
|
|
161514
|
+
};
|
|
161515
|
+
body_html?: string;
|
|
161516
|
+
body_plain_text?: string;
|
|
161517
|
+
attachments?: Array<{
|
|
161518
|
+
body: string;
|
|
161519
|
+
filename: string;
|
|
161520
|
+
}>;
|
|
161521
|
+
thread_id?: string;
|
|
161522
|
+
};
|
|
161523
|
+
path: {
|
|
161524
|
+
user_mailbox_id: string;
|
|
161525
|
+
};
|
|
161526
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
161527
|
+
code?: number | undefined;
|
|
161528
|
+
msg?: string | undefined;
|
|
161529
|
+
data?: {} | undefined;
|
|
161530
|
+
}>;
|
|
161531
|
+
};
|
|
160847
161532
|
v1: {
|
|
160848
161533
|
/**
|
|
160849
161534
|
* 邮件组别名
|
|
@@ -162197,6 +162882,52 @@ declare abstract class Client$q extends Client$r {
|
|
|
162197
162882
|
data?: {} | undefined;
|
|
162198
162883
|
}>;
|
|
162199
162884
|
};
|
|
162885
|
+
/**
|
|
162886
|
+
* user_mailbox.message
|
|
162887
|
+
*/
|
|
162888
|
+
userMailboxMessage: {
|
|
162889
|
+
/**
|
|
162890
|
+
* {@link https://open.feishu.cn/api-explorer?project=mail&resource=user_mailbox.message&apiName=send&version=v1 click to debug }
|
|
162891
|
+
*
|
|
162892
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=send&project=mail&resource=user_mailbox.message&version=v1 document }
|
|
162893
|
+
*/
|
|
162894
|
+
send: (payload?: {
|
|
162895
|
+
data?: {
|
|
162896
|
+
raw?: string;
|
|
162897
|
+
subject?: string;
|
|
162898
|
+
to?: Array<{
|
|
162899
|
+
mail_address: string;
|
|
162900
|
+
name?: string;
|
|
162901
|
+
}>;
|
|
162902
|
+
cc?: Array<{
|
|
162903
|
+
mail_address: string;
|
|
162904
|
+
name?: string;
|
|
162905
|
+
}>;
|
|
162906
|
+
bcc?: Array<{
|
|
162907
|
+
mail_address: string;
|
|
162908
|
+
name?: string;
|
|
162909
|
+
}>;
|
|
162910
|
+
head_from?: {
|
|
162911
|
+
mail_address?: string;
|
|
162912
|
+
name?: string;
|
|
162913
|
+
};
|
|
162914
|
+
body_html?: string;
|
|
162915
|
+
body_plain_text?: string;
|
|
162916
|
+
attachments?: Array<{
|
|
162917
|
+
body: string;
|
|
162918
|
+
filename: string;
|
|
162919
|
+
}>;
|
|
162920
|
+
thread_id?: string;
|
|
162921
|
+
};
|
|
162922
|
+
path: {
|
|
162923
|
+
user_mailbox_id: string;
|
|
162924
|
+
};
|
|
162925
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
162926
|
+
code?: number | undefined;
|
|
162927
|
+
msg?: string | undefined;
|
|
162928
|
+
data?: {} | undefined;
|
|
162929
|
+
}>;
|
|
162930
|
+
};
|
|
162200
162931
|
};
|
|
162201
162932
|
};
|
|
162202
162933
|
}
|
|
@@ -162343,7 +163074,98 @@ declare abstract class Client$n extends Client$o {
|
|
|
162343
163074
|
/**
|
|
162344
163075
|
|
|
162345
163076
|
*/
|
|
162346
|
-
moments: {
|
|
163077
|
+
moments: {
|
|
163078
|
+
/**
|
|
163079
|
+
* post
|
|
163080
|
+
*/
|
|
163081
|
+
post: {
|
|
163082
|
+
/**
|
|
163083
|
+
* {@link https://open.feishu.cn/api-explorer?project=moments&resource=post&apiName=get&version=v1 click to debug }
|
|
163084
|
+
*
|
|
163085
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=moments&resource=post&version=v1 document }
|
|
163086
|
+
*/
|
|
163087
|
+
get: (payload?: {
|
|
163088
|
+
params?: {
|
|
163089
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
163090
|
+
};
|
|
163091
|
+
path: {
|
|
163092
|
+
post_id: string;
|
|
163093
|
+
};
|
|
163094
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
163095
|
+
code?: number | undefined;
|
|
163096
|
+
msg?: string | undefined;
|
|
163097
|
+
data?: {
|
|
163098
|
+
post?: {
|
|
163099
|
+
user_id?: string | undefined;
|
|
163100
|
+
content: string;
|
|
163101
|
+
image_key_list?: string[] | undefined;
|
|
163102
|
+
media_file_token?: string | undefined;
|
|
163103
|
+
comment_count?: number | undefined;
|
|
163104
|
+
reaction_set?: {
|
|
163105
|
+
reactions?: {
|
|
163106
|
+
type?: string | undefined;
|
|
163107
|
+
count?: number | undefined;
|
|
163108
|
+
}[] | undefined;
|
|
163109
|
+
total_count?: number | undefined;
|
|
163110
|
+
} | undefined;
|
|
163111
|
+
id?: string | undefined;
|
|
163112
|
+
create_time?: string | undefined;
|
|
163113
|
+
media_cover_image_key?: string | undefined;
|
|
163114
|
+
category_ids?: string[] | undefined;
|
|
163115
|
+
link?: string | undefined;
|
|
163116
|
+
user_type?: number | undefined;
|
|
163117
|
+
dislike_count?: number | undefined;
|
|
163118
|
+
} | undefined;
|
|
163119
|
+
} | undefined;
|
|
163120
|
+
}>;
|
|
163121
|
+
};
|
|
163122
|
+
v1: {
|
|
163123
|
+
/**
|
|
163124
|
+
* post
|
|
163125
|
+
*/
|
|
163126
|
+
post: {
|
|
163127
|
+
/**
|
|
163128
|
+
* {@link https://open.feishu.cn/api-explorer?project=moments&resource=post&apiName=get&version=v1 click to debug }
|
|
163129
|
+
*
|
|
163130
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=moments&resource=post&version=v1 document }
|
|
163131
|
+
*/
|
|
163132
|
+
get: (payload?: {
|
|
163133
|
+
params?: {
|
|
163134
|
+
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
163135
|
+
};
|
|
163136
|
+
path: {
|
|
163137
|
+
post_id: string;
|
|
163138
|
+
};
|
|
163139
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
163140
|
+
code?: number | undefined;
|
|
163141
|
+
msg?: string | undefined;
|
|
163142
|
+
data?: {
|
|
163143
|
+
post?: {
|
|
163144
|
+
user_id?: string | undefined;
|
|
163145
|
+
content: string;
|
|
163146
|
+
image_key_list?: string[] | undefined;
|
|
163147
|
+
media_file_token?: string | undefined;
|
|
163148
|
+
comment_count?: number | undefined;
|
|
163149
|
+
reaction_set?: {
|
|
163150
|
+
reactions?: {
|
|
163151
|
+
type?: string | undefined;
|
|
163152
|
+
count?: number | undefined;
|
|
163153
|
+
}[] | undefined;
|
|
163154
|
+
total_count?: number | undefined;
|
|
163155
|
+
} | undefined;
|
|
163156
|
+
id?: string | undefined;
|
|
163157
|
+
create_time?: string | undefined;
|
|
163158
|
+
media_cover_image_key?: string | undefined;
|
|
163159
|
+
category_ids?: string[] | undefined;
|
|
163160
|
+
link?: string | undefined;
|
|
163161
|
+
user_type?: number | undefined;
|
|
163162
|
+
dislike_count?: number | undefined;
|
|
163163
|
+
} | undefined;
|
|
163164
|
+
} | undefined;
|
|
163165
|
+
}>;
|
|
163166
|
+
};
|
|
163167
|
+
};
|
|
163168
|
+
};
|
|
162347
163169
|
}
|
|
162348
163170
|
|
|
162349
163171
|
declare abstract class Client$m extends Client$n {
|
|
@@ -184760,6 +185582,36 @@ interface IHandles extends IOtherEventHandles {
|
|
|
184760
185582
|
};
|
|
184761
185583
|
job_change_id?: string;
|
|
184762
185584
|
}) => Promise<any> | any;
|
|
185585
|
+
/**
|
|
185586
|
+
|
|
185587
|
+
*/
|
|
185588
|
+
"corehr.job_data.created_v1"?: (data: {
|
|
185589
|
+
event_id?: string;
|
|
185590
|
+
token?: string;
|
|
185591
|
+
create_time?: string;
|
|
185592
|
+
event_type?: string;
|
|
185593
|
+
tenant_key?: string;
|
|
185594
|
+
ts?: string;
|
|
185595
|
+
uuid?: string;
|
|
185596
|
+
type?: string;
|
|
185597
|
+
app_id?: string;
|
|
185598
|
+
job_data_id?: string;
|
|
185599
|
+
}) => Promise<any> | any;
|
|
185600
|
+
/**
|
|
185601
|
+
|
|
185602
|
+
*/
|
|
185603
|
+
"corehr.job_data.deleted_v1"?: (data: {
|
|
185604
|
+
event_id?: string;
|
|
185605
|
+
token?: string;
|
|
185606
|
+
create_time?: string;
|
|
185607
|
+
event_type?: string;
|
|
185608
|
+
tenant_key?: string;
|
|
185609
|
+
ts?: string;
|
|
185610
|
+
uuid?: string;
|
|
185611
|
+
type?: string;
|
|
185612
|
+
app_id?: string;
|
|
185613
|
+
job_data_id?: string;
|
|
185614
|
+
}) => Promise<any> | any;
|
|
184763
185615
|
/**
|
|
184764
185616
|
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/job_data/events/employed document }
|
|
184765
185617
|
*
|
|
@@ -184785,6 +185637,21 @@ interface IHandles extends IOtherEventHandles {
|
|
|
184785
185637
|
open_id?: string;
|
|
184786
185638
|
};
|
|
184787
185639
|
}) => Promise<any> | any;
|
|
185640
|
+
/**
|
|
185641
|
+
|
|
185642
|
+
*/
|
|
185643
|
+
"corehr.job_data.updated_v1"?: (data: {
|
|
185644
|
+
event_id?: string;
|
|
185645
|
+
token?: string;
|
|
185646
|
+
create_time?: string;
|
|
185647
|
+
event_type?: string;
|
|
185648
|
+
tenant_key?: string;
|
|
185649
|
+
ts?: string;
|
|
185650
|
+
uuid?: string;
|
|
185651
|
+
type?: string;
|
|
185652
|
+
app_id?: string;
|
|
185653
|
+
job_data_id?: string;
|
|
185654
|
+
}) => Promise<any> | any;
|
|
184788
185655
|
/**
|
|
184789
185656
|
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/corehr-v1/offboarding/events/updated document }
|
|
184790
185657
|
*
|
|
@@ -184927,6 +185794,34 @@ interface IHandles extends IOtherEventHandles {
|
|
|
184927
185794
|
fields?: Array<string>;
|
|
184928
185795
|
}>;
|
|
184929
185796
|
}) => Promise<any> | any;
|
|
185797
|
+
/**
|
|
185798
|
+
|
|
185799
|
+
*/
|
|
185800
|
+
"corehr.job_change.status_updated_v2"?: (data: {
|
|
185801
|
+
event_id?: string;
|
|
185802
|
+
token?: string;
|
|
185803
|
+
create_time?: string;
|
|
185804
|
+
event_type?: string;
|
|
185805
|
+
tenant_key?: string;
|
|
185806
|
+
ts?: string;
|
|
185807
|
+
uuid?: string;
|
|
185808
|
+
type?: string;
|
|
185809
|
+
app_id?: string;
|
|
185810
|
+
employment_id?: string;
|
|
185811
|
+
target_user_id?: {
|
|
185812
|
+
union_id?: string;
|
|
185813
|
+
user_id?: string;
|
|
185814
|
+
open_id?: string;
|
|
185815
|
+
};
|
|
185816
|
+
job_change_id?: string;
|
|
185817
|
+
transfer_mode?: number;
|
|
185818
|
+
transfer_type_unique_identifier?: string;
|
|
185819
|
+
transfer_reason_unique_identifier?: string;
|
|
185820
|
+
process_id?: string;
|
|
185821
|
+
effective_date?: string;
|
|
185822
|
+
status?: number;
|
|
185823
|
+
transfer_key?: string;
|
|
185824
|
+
}) => Promise<any> | any;
|
|
184930
185825
|
/**
|
|
184931
185826
|
|
|
184932
185827
|
*/
|
|
@@ -184951,6 +185846,8 @@ interface IHandles extends IOtherEventHandles {
|
|
|
184951
185846
|
operate_reason?: string;
|
|
184952
185847
|
transfer_type?: number;
|
|
184953
185848
|
updated_fields?: Array<string>;
|
|
185849
|
+
transform_type?: string;
|
|
185850
|
+
transform_reason?: string;
|
|
184954
185851
|
}) => Promise<any> | any;
|
|
184955
185852
|
/**
|
|
184956
185853
|
|
|
@@ -186561,6 +187458,193 @@ interface IHandles extends IOtherEventHandles {
|
|
|
186561
187458
|
room_name?: string;
|
|
186562
187459
|
room_id?: string;
|
|
186563
187460
|
}) => Promise<any> | any;
|
|
187461
|
+
/**
|
|
187462
|
+
|
|
187463
|
+
*/
|
|
187464
|
+
"moments.comment.created_v1"?: (data: {
|
|
187465
|
+
event_id?: string;
|
|
187466
|
+
token?: string;
|
|
187467
|
+
create_time?: string;
|
|
187468
|
+
event_type?: string;
|
|
187469
|
+
tenant_key?: string;
|
|
187470
|
+
ts?: string;
|
|
187471
|
+
uuid?: string;
|
|
187472
|
+
type?: string;
|
|
187473
|
+
app_id?: string;
|
|
187474
|
+
user_id?: {
|
|
187475
|
+
union_id?: string;
|
|
187476
|
+
user_id?: string;
|
|
187477
|
+
open_id?: string;
|
|
187478
|
+
};
|
|
187479
|
+
id?: string;
|
|
187480
|
+
post_id?: string;
|
|
187481
|
+
reply_comment_id?: string;
|
|
187482
|
+
root_comment_id?: string;
|
|
187483
|
+
user_type?: number;
|
|
187484
|
+
}) => Promise<any> | any;
|
|
187485
|
+
/**
|
|
187486
|
+
|
|
187487
|
+
*/
|
|
187488
|
+
"moments.comment.deleted_v1"?: (data: {
|
|
187489
|
+
event_id?: string;
|
|
187490
|
+
token?: string;
|
|
187491
|
+
create_time?: string;
|
|
187492
|
+
event_type?: string;
|
|
187493
|
+
tenant_key?: string;
|
|
187494
|
+
ts?: string;
|
|
187495
|
+
uuid?: string;
|
|
187496
|
+
type?: string;
|
|
187497
|
+
app_id?: string;
|
|
187498
|
+
id?: string;
|
|
187499
|
+
post_id?: string;
|
|
187500
|
+
}) => Promise<any> | any;
|
|
187501
|
+
/**
|
|
187502
|
+
|
|
187503
|
+
*/
|
|
187504
|
+
"moments.dislike.created_v1"?: (data: {
|
|
187505
|
+
event_id?: string;
|
|
187506
|
+
token?: string;
|
|
187507
|
+
create_time?: string;
|
|
187508
|
+
event_type?: string;
|
|
187509
|
+
tenant_key?: string;
|
|
187510
|
+
ts?: string;
|
|
187511
|
+
uuid?: string;
|
|
187512
|
+
type?: string;
|
|
187513
|
+
app_id?: string;
|
|
187514
|
+
entity_type?: number;
|
|
187515
|
+
entity_id?: string;
|
|
187516
|
+
user_id?: {
|
|
187517
|
+
union_id?: string;
|
|
187518
|
+
user_id?: string;
|
|
187519
|
+
open_id?: string;
|
|
187520
|
+
};
|
|
187521
|
+
id?: string;
|
|
187522
|
+
}) => Promise<any> | any;
|
|
187523
|
+
/**
|
|
187524
|
+
|
|
187525
|
+
*/
|
|
187526
|
+
"moments.dislike.deleted_v1"?: (data: {
|
|
187527
|
+
event_id?: string;
|
|
187528
|
+
token?: string;
|
|
187529
|
+
create_time?: string;
|
|
187530
|
+
event_type?: string;
|
|
187531
|
+
tenant_key?: string;
|
|
187532
|
+
ts?: string;
|
|
187533
|
+
uuid?: string;
|
|
187534
|
+
type?: string;
|
|
187535
|
+
app_id?: string;
|
|
187536
|
+
entity_type?: number;
|
|
187537
|
+
entity_id?: string;
|
|
187538
|
+
user_id?: {
|
|
187539
|
+
union_id?: string;
|
|
187540
|
+
user_id?: string;
|
|
187541
|
+
open_id?: string;
|
|
187542
|
+
};
|
|
187543
|
+
id?: string;
|
|
187544
|
+
}) => Promise<any> | any;
|
|
187545
|
+
/**
|
|
187546
|
+
|
|
187547
|
+
*/
|
|
187548
|
+
"moments.post.created_v1"?: (data: {
|
|
187549
|
+
event_id?: string;
|
|
187550
|
+
token?: string;
|
|
187551
|
+
create_time?: string;
|
|
187552
|
+
event_type?: string;
|
|
187553
|
+
tenant_key?: string;
|
|
187554
|
+
ts?: string;
|
|
187555
|
+
uuid?: string;
|
|
187556
|
+
type?: string;
|
|
187557
|
+
app_id?: string;
|
|
187558
|
+
id?: string;
|
|
187559
|
+
user_id?: {
|
|
187560
|
+
union_id?: string;
|
|
187561
|
+
user_id?: string;
|
|
187562
|
+
open_id?: string;
|
|
187563
|
+
};
|
|
187564
|
+
category_ids?: Array<string>;
|
|
187565
|
+
link?: string;
|
|
187566
|
+
user_type?: number;
|
|
187567
|
+
}) => Promise<any> | any;
|
|
187568
|
+
/**
|
|
187569
|
+
|
|
187570
|
+
*/
|
|
187571
|
+
"moments.post.deleted_v1"?: (data: {
|
|
187572
|
+
event_id?: string;
|
|
187573
|
+
token?: string;
|
|
187574
|
+
create_time?: string;
|
|
187575
|
+
event_type?: string;
|
|
187576
|
+
tenant_key?: string;
|
|
187577
|
+
ts?: string;
|
|
187578
|
+
uuid?: string;
|
|
187579
|
+
type?: string;
|
|
187580
|
+
app_id?: string;
|
|
187581
|
+
id?: string;
|
|
187582
|
+
}) => Promise<any> | any;
|
|
187583
|
+
/**
|
|
187584
|
+
|
|
187585
|
+
*/
|
|
187586
|
+
"moments.post_statistics.updated_v1"?: (data: {
|
|
187587
|
+
event_id?: string;
|
|
187588
|
+
token?: string;
|
|
187589
|
+
create_time?: string;
|
|
187590
|
+
event_type?: string;
|
|
187591
|
+
tenant_key?: string;
|
|
187592
|
+
ts?: string;
|
|
187593
|
+
uuid?: string;
|
|
187594
|
+
type?: string;
|
|
187595
|
+
app_id?: string;
|
|
187596
|
+
post_id?: string;
|
|
187597
|
+
statistics_type?: number;
|
|
187598
|
+
statistics?: {
|
|
187599
|
+
share_count?: number;
|
|
187600
|
+
};
|
|
187601
|
+
}) => Promise<any> | any;
|
|
187602
|
+
/**
|
|
187603
|
+
|
|
187604
|
+
*/
|
|
187605
|
+
"moments.reaction.created_v1"?: (data: {
|
|
187606
|
+
event_id?: string;
|
|
187607
|
+
token?: string;
|
|
187608
|
+
create_time?: string;
|
|
187609
|
+
event_type?: string;
|
|
187610
|
+
tenant_key?: string;
|
|
187611
|
+
ts?: string;
|
|
187612
|
+
uuid?: string;
|
|
187613
|
+
type?: string;
|
|
187614
|
+
app_id?: string;
|
|
187615
|
+
user_id?: {
|
|
187616
|
+
union_id?: string;
|
|
187617
|
+
user_id?: string;
|
|
187618
|
+
open_id?: string;
|
|
187619
|
+
};
|
|
187620
|
+
entity_id?: string;
|
|
187621
|
+
id?: string;
|
|
187622
|
+
entity_type?: number;
|
|
187623
|
+
user_type?: number;
|
|
187624
|
+
}) => Promise<any> | any;
|
|
187625
|
+
/**
|
|
187626
|
+
|
|
187627
|
+
*/
|
|
187628
|
+
"moments.reaction.deleted_v1"?: (data: {
|
|
187629
|
+
event_id?: string;
|
|
187630
|
+
token?: string;
|
|
187631
|
+
create_time?: string;
|
|
187632
|
+
event_type?: string;
|
|
187633
|
+
tenant_key?: string;
|
|
187634
|
+
ts?: string;
|
|
187635
|
+
uuid?: string;
|
|
187636
|
+
type?: string;
|
|
187637
|
+
app_id?: string;
|
|
187638
|
+
user_id?: {
|
|
187639
|
+
union_id?: string;
|
|
187640
|
+
user_id?: string;
|
|
187641
|
+
open_id?: string;
|
|
187642
|
+
};
|
|
187643
|
+
entity_id?: string;
|
|
187644
|
+
id?: string;
|
|
187645
|
+
entity_type?: number;
|
|
187646
|
+
user_type?: number;
|
|
187647
|
+
}) => Promise<any> | any;
|
|
186564
187648
|
/**
|
|
186565
187649
|
* {@link https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/task-v1/task-comment/events/updated document }
|
|
186566
187650
|
*
|