@larksuiteoapi/node-sdk 1.43.0-alpha.0 → 1.44.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 +277 -14
- package/lib/index.js +277 -14
- package/package.json +1 -1
- package/types/index.d.ts +813 -88
package/types/index.d.ts
CHANGED
|
@@ -1074,7 +1074,7 @@ declare abstract class Client$10 extends Client$11 {
|
|
|
1074
1074
|
httpInstance: HttpInstance;
|
|
1075
1075
|
abstract formatPayload(payload?: IPayload, options?: IRequestOptions$1): Promise<Required<IPayload>>;
|
|
1076
1076
|
/**
|
|
1077
|
-
*
|
|
1077
|
+
* 管理后台-数据报表
|
|
1078
1078
|
*/
|
|
1079
1079
|
admin: {
|
|
1080
1080
|
/**
|
|
@@ -4328,7 +4328,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4328
4328
|
scope: string;
|
|
4329
4329
|
description?: string | undefined;
|
|
4330
4330
|
level?: number | undefined;
|
|
4331
|
-
token_types?:
|
|
4331
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4332
4332
|
}[] | undefined;
|
|
4333
4333
|
back_home_url?: string | undefined;
|
|
4334
4334
|
i18n?: {
|
|
@@ -4456,7 +4456,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4456
4456
|
scope: string;
|
|
4457
4457
|
description?: string | undefined;
|
|
4458
4458
|
level?: number | undefined;
|
|
4459
|
-
token_types?:
|
|
4459
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4460
4460
|
}[] | undefined;
|
|
4461
4461
|
back_home_url?: string | undefined;
|
|
4462
4462
|
i18n?: {
|
|
@@ -4595,7 +4595,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4595
4595
|
scope: string;
|
|
4596
4596
|
description?: string | undefined;
|
|
4597
4597
|
level?: number | undefined;
|
|
4598
|
-
token_types?:
|
|
4598
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4599
4599
|
}[] | undefined;
|
|
4600
4600
|
back_home_url?: string | undefined;
|
|
4601
4601
|
i18n?: {
|
|
@@ -4729,6 +4729,57 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4729
4729
|
data?: {} | undefined;
|
|
4730
4730
|
}>;
|
|
4731
4731
|
};
|
|
4732
|
+
/**
|
|
4733
|
+
* application.collaborators
|
|
4734
|
+
*/
|
|
4735
|
+
applicationCollaborators: {
|
|
4736
|
+
/**
|
|
4737
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=get&version=v6 click to debug }
|
|
4738
|
+
*
|
|
4739
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=application&resource=application.collaborators&version=v6 document }
|
|
4740
|
+
*/
|
|
4741
|
+
get: (payload?: {
|
|
4742
|
+
params?: {
|
|
4743
|
+
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
4744
|
+
};
|
|
4745
|
+
path: {
|
|
4746
|
+
app_id: string;
|
|
4747
|
+
};
|
|
4748
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
4749
|
+
code?: number | undefined;
|
|
4750
|
+
msg?: string | undefined;
|
|
4751
|
+
data?: {
|
|
4752
|
+
collaborators?: {
|
|
4753
|
+
type: "administrator" | "developer" | "operator";
|
|
4754
|
+
user_id: string;
|
|
4755
|
+
}[] | undefined;
|
|
4756
|
+
} | undefined;
|
|
4757
|
+
}>;
|
|
4758
|
+
/**
|
|
4759
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=update&version=v6 click to debug }
|
|
4760
|
+
*
|
|
4761
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.collaborators&version=v6 document }
|
|
4762
|
+
*/
|
|
4763
|
+
update: (payload?: {
|
|
4764
|
+
data?: {
|
|
4765
|
+
adds?: Array<{
|
|
4766
|
+
type: "administrator" | "developer" | "operator";
|
|
4767
|
+
user_id: string;
|
|
4768
|
+
}>;
|
|
4769
|
+
removes?: Array<string>;
|
|
4770
|
+
};
|
|
4771
|
+
params?: {
|
|
4772
|
+
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
4773
|
+
};
|
|
4774
|
+
path: {
|
|
4775
|
+
app_id: string;
|
|
4776
|
+
};
|
|
4777
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
4778
|
+
code?: number | undefined;
|
|
4779
|
+
msg?: string | undefined;
|
|
4780
|
+
data?: {} | undefined;
|
|
4781
|
+
}>;
|
|
4782
|
+
};
|
|
4732
4783
|
/**
|
|
4733
4784
|
* application.contacts_range
|
|
4734
4785
|
*/
|
|
@@ -4838,7 +4889,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4838
4889
|
scope: string;
|
|
4839
4890
|
description?: string | undefined;
|
|
4840
4891
|
level?: number | undefined;
|
|
4841
|
-
token_types?:
|
|
4892
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4842
4893
|
}[] | undefined;
|
|
4843
4894
|
back_home_url?: string | undefined;
|
|
4844
4895
|
i18n?: {
|
|
@@ -4892,7 +4943,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4892
4943
|
scope: string;
|
|
4893
4944
|
description?: string | undefined;
|
|
4894
4945
|
level?: number | undefined;
|
|
4895
|
-
token_types?:
|
|
4946
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4896
4947
|
}[] | undefined;
|
|
4897
4948
|
back_home_url?: string | undefined;
|
|
4898
4949
|
i18n?: {
|
|
@@ -4958,7 +5009,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
4958
5009
|
scope: string;
|
|
4959
5010
|
description?: string | undefined;
|
|
4960
5011
|
level?: number | undefined;
|
|
4961
|
-
token_types?:
|
|
5012
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
4962
5013
|
}[] | undefined;
|
|
4963
5014
|
back_home_url?: string | undefined;
|
|
4964
5015
|
i18n?: {
|
|
@@ -5057,7 +5108,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
5057
5108
|
scope: string;
|
|
5058
5109
|
description?: string;
|
|
5059
5110
|
level?: number;
|
|
5060
|
-
token_types?: Array<
|
|
5111
|
+
token_types?: Array<"tenant" | "user">;
|
|
5061
5112
|
}>;
|
|
5062
5113
|
back_home_url?: string;
|
|
5063
5114
|
i18n?: Array<{
|
|
@@ -5184,6 +5235,31 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
5184
5235
|
data?: {} | undefined;
|
|
5185
5236
|
}>;
|
|
5186
5237
|
};
|
|
5238
|
+
/**
|
|
5239
|
+
* application.owner
|
|
5240
|
+
*/
|
|
5241
|
+
applicationOwner: {
|
|
5242
|
+
/**
|
|
5243
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.owner&apiName=update&version=v6 click to debug }
|
|
5244
|
+
*
|
|
5245
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.owner&version=v6 document }
|
|
5246
|
+
*/
|
|
5247
|
+
update: (payload?: {
|
|
5248
|
+
data: {
|
|
5249
|
+
owner_id: string;
|
|
5250
|
+
};
|
|
5251
|
+
params?: {
|
|
5252
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
5253
|
+
};
|
|
5254
|
+
path: {
|
|
5255
|
+
app_id: string;
|
|
5256
|
+
};
|
|
5257
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
5258
|
+
code?: number | undefined;
|
|
5259
|
+
msg?: string | undefined;
|
|
5260
|
+
data?: {} | undefined;
|
|
5261
|
+
}>;
|
|
5262
|
+
};
|
|
5187
5263
|
/**
|
|
5188
5264
|
* 事件
|
|
5189
5265
|
*/
|
|
@@ -5658,7 +5734,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
5658
5734
|
scope: string;
|
|
5659
5735
|
description?: string | undefined;
|
|
5660
5736
|
level?: number | undefined;
|
|
5661
|
-
token_types?:
|
|
5737
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
5662
5738
|
}[] | undefined;
|
|
5663
5739
|
back_home_url?: string | undefined;
|
|
5664
5740
|
i18n?: {
|
|
@@ -5786,7 +5862,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
5786
5862
|
scope: string;
|
|
5787
5863
|
description?: string | undefined;
|
|
5788
5864
|
level?: number | undefined;
|
|
5789
|
-
token_types?:
|
|
5865
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
5790
5866
|
}[] | undefined;
|
|
5791
5867
|
back_home_url?: string | undefined;
|
|
5792
5868
|
i18n?: {
|
|
@@ -5925,7 +6001,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
5925
6001
|
scope: string;
|
|
5926
6002
|
description?: string | undefined;
|
|
5927
6003
|
level?: number | undefined;
|
|
5928
|
-
token_types?:
|
|
6004
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
5929
6005
|
}[] | undefined;
|
|
5930
6006
|
back_home_url?: string | undefined;
|
|
5931
6007
|
i18n?: {
|
|
@@ -6059,6 +6135,57 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6059
6135
|
data?: {} | undefined;
|
|
6060
6136
|
}>;
|
|
6061
6137
|
};
|
|
6138
|
+
/**
|
|
6139
|
+
* application.collaborators
|
|
6140
|
+
*/
|
|
6141
|
+
applicationCollaborators: {
|
|
6142
|
+
/**
|
|
6143
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=get&version=v6 click to debug }
|
|
6144
|
+
*
|
|
6145
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=get&project=application&resource=application.collaborators&version=v6 document }
|
|
6146
|
+
*/
|
|
6147
|
+
get: (payload?: {
|
|
6148
|
+
params?: {
|
|
6149
|
+
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
6150
|
+
};
|
|
6151
|
+
path: {
|
|
6152
|
+
app_id: string;
|
|
6153
|
+
};
|
|
6154
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
6155
|
+
code?: number | undefined;
|
|
6156
|
+
msg?: string | undefined;
|
|
6157
|
+
data?: {
|
|
6158
|
+
collaborators?: {
|
|
6159
|
+
type: "administrator" | "developer" | "operator";
|
|
6160
|
+
user_id: string;
|
|
6161
|
+
}[] | undefined;
|
|
6162
|
+
} | undefined;
|
|
6163
|
+
}>;
|
|
6164
|
+
/**
|
|
6165
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.collaborators&apiName=update&version=v6 click to debug }
|
|
6166
|
+
*
|
|
6167
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.collaborators&version=v6 document }
|
|
6168
|
+
*/
|
|
6169
|
+
update: (payload?: {
|
|
6170
|
+
data?: {
|
|
6171
|
+
adds?: Array<{
|
|
6172
|
+
type: "administrator" | "developer" | "operator";
|
|
6173
|
+
user_id: string;
|
|
6174
|
+
}>;
|
|
6175
|
+
removes?: Array<string>;
|
|
6176
|
+
};
|
|
6177
|
+
params?: {
|
|
6178
|
+
user_id_type?: "open_id" | "union_id" | "user_id";
|
|
6179
|
+
};
|
|
6180
|
+
path: {
|
|
6181
|
+
app_id: string;
|
|
6182
|
+
};
|
|
6183
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
6184
|
+
code?: number | undefined;
|
|
6185
|
+
msg?: string | undefined;
|
|
6186
|
+
data?: {} | undefined;
|
|
6187
|
+
}>;
|
|
6188
|
+
};
|
|
6062
6189
|
/**
|
|
6063
6190
|
* application.contacts_range
|
|
6064
6191
|
*/
|
|
@@ -6168,7 +6295,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6168
6295
|
scope: string;
|
|
6169
6296
|
description?: string | undefined;
|
|
6170
6297
|
level?: number | undefined;
|
|
6171
|
-
token_types?:
|
|
6298
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
6172
6299
|
}[] | undefined;
|
|
6173
6300
|
back_home_url?: string | undefined;
|
|
6174
6301
|
i18n?: {
|
|
@@ -6222,7 +6349,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6222
6349
|
scope: string;
|
|
6223
6350
|
description?: string | undefined;
|
|
6224
6351
|
level?: number | undefined;
|
|
6225
|
-
token_types?:
|
|
6352
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
6226
6353
|
}[] | undefined;
|
|
6227
6354
|
back_home_url?: string | undefined;
|
|
6228
6355
|
i18n?: {
|
|
@@ -6288,7 +6415,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6288
6415
|
scope: string;
|
|
6289
6416
|
description?: string | undefined;
|
|
6290
6417
|
level?: number | undefined;
|
|
6291
|
-
token_types?:
|
|
6418
|
+
token_types?: ("user" | "tenant")[] | undefined;
|
|
6292
6419
|
}[] | undefined;
|
|
6293
6420
|
back_home_url?: string | undefined;
|
|
6294
6421
|
i18n?: {
|
|
@@ -6387,7 +6514,7 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6387
6514
|
scope: string;
|
|
6388
6515
|
description?: string;
|
|
6389
6516
|
level?: number;
|
|
6390
|
-
token_types?: Array<
|
|
6517
|
+
token_types?: Array<"tenant" | "user">;
|
|
6391
6518
|
}>;
|
|
6392
6519
|
back_home_url?: string;
|
|
6393
6520
|
i18n?: Array<{
|
|
@@ -6514,6 +6641,31 @@ declare abstract class Client$_ extends Client$$ {
|
|
|
6514
6641
|
data?: {} | undefined;
|
|
6515
6642
|
}>;
|
|
6516
6643
|
};
|
|
6644
|
+
/**
|
|
6645
|
+
* application.owner
|
|
6646
|
+
*/
|
|
6647
|
+
applicationOwner: {
|
|
6648
|
+
/**
|
|
6649
|
+
* {@link https://open.feishu.cn/api-explorer?project=application&resource=application.owner&apiName=update&version=v6 click to debug }
|
|
6650
|
+
*
|
|
6651
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=update&project=application&resource=application.owner&version=v6 document }
|
|
6652
|
+
*/
|
|
6653
|
+
update: (payload?: {
|
|
6654
|
+
data: {
|
|
6655
|
+
owner_id: string;
|
|
6656
|
+
};
|
|
6657
|
+
params?: {
|
|
6658
|
+
user_id_type?: "open_id" | "user_id" | "union_id";
|
|
6659
|
+
};
|
|
6660
|
+
path: {
|
|
6661
|
+
app_id: string;
|
|
6662
|
+
};
|
|
6663
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
6664
|
+
code?: number | undefined;
|
|
6665
|
+
msg?: string | undefined;
|
|
6666
|
+
data?: {} | undefined;
|
|
6667
|
+
}>;
|
|
6668
|
+
};
|
|
6517
6669
|
/**
|
|
6518
6670
|
* 事件
|
|
6519
6671
|
*/
|
|
@@ -7925,7 +8077,7 @@ declare abstract class Client$Z extends Client$_ {
|
|
|
7925
8077
|
}>;
|
|
7926
8078
|
};
|
|
7927
8079
|
/**
|
|
7928
|
-
*
|
|
8080
|
+
* 审批查询
|
|
7929
8081
|
*/
|
|
7930
8082
|
task: {
|
|
7931
8083
|
/**
|
|
@@ -9462,7 +9614,7 @@ declare abstract class Client$Z extends Client$_ {
|
|
|
9462
9614
|
}>;
|
|
9463
9615
|
};
|
|
9464
9616
|
/**
|
|
9465
|
-
*
|
|
9617
|
+
* 审批查询
|
|
9466
9618
|
*/
|
|
9467
9619
|
task: {
|
|
9468
9620
|
/**
|
|
@@ -9998,6 +10150,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
9998
10150
|
face_live_need_action?: boolean;
|
|
9999
10151
|
face_downgrade?: boolean;
|
|
10000
10152
|
replace_basic_pic?: boolean;
|
|
10153
|
+
anti_cheat_punch_config?: {
|
|
10154
|
+
intercept_suspected_cheat_punch?: boolean;
|
|
10155
|
+
check_cheat_software_punch?: boolean;
|
|
10156
|
+
check_buddy_punch?: boolean;
|
|
10157
|
+
check_simulate_wifi_punch?: boolean;
|
|
10158
|
+
check_change_device_punch?: boolean;
|
|
10159
|
+
allow_change_device_num?: number;
|
|
10160
|
+
suspected_cheat_handle_method: number;
|
|
10161
|
+
};
|
|
10001
10162
|
machines?: Array<{
|
|
10002
10163
|
machine_sn: string;
|
|
10003
10164
|
machine_name: string;
|
|
@@ -10107,6 +10268,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10107
10268
|
};
|
|
10108
10269
|
new_calendar_id?: string;
|
|
10109
10270
|
allow_apply_punch?: boolean;
|
|
10271
|
+
clock_in_abnormal_settings?: {
|
|
10272
|
+
ignore_until_latest_clockout?: boolean;
|
|
10273
|
+
};
|
|
10110
10274
|
};
|
|
10111
10275
|
operator_id?: string;
|
|
10112
10276
|
};
|
|
@@ -10154,6 +10318,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10154
10318
|
face_live_need_action?: boolean | undefined;
|
|
10155
10319
|
face_downgrade?: boolean | undefined;
|
|
10156
10320
|
replace_basic_pic?: boolean | undefined;
|
|
10321
|
+
anti_cheat_punch_config?: {
|
|
10322
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
10323
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
10324
|
+
check_buddy_punch?: boolean | undefined;
|
|
10325
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
10326
|
+
check_change_device_punch?: boolean | undefined;
|
|
10327
|
+
allow_change_device_num?: number | undefined;
|
|
10328
|
+
suspected_cheat_handle_method: number;
|
|
10329
|
+
} | undefined;
|
|
10157
10330
|
machines?: {
|
|
10158
10331
|
machine_sn: string;
|
|
10159
10332
|
machine_name: string;
|
|
@@ -10267,6 +10440,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10267
10440
|
} | undefined;
|
|
10268
10441
|
new_calendar_id?: string | undefined;
|
|
10269
10442
|
allow_apply_punch?: boolean | undefined;
|
|
10443
|
+
clock_in_abnormal_settings?: {
|
|
10444
|
+
ignore_until_latest_clockout?: boolean | undefined;
|
|
10445
|
+
} | undefined;
|
|
10270
10446
|
} | undefined;
|
|
10271
10447
|
} | undefined;
|
|
10272
10448
|
}>;
|
|
@@ -10344,6 +10520,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10344
10520
|
face_live_need_action?: boolean | undefined;
|
|
10345
10521
|
face_downgrade?: boolean | undefined;
|
|
10346
10522
|
replace_basic_pic?: boolean | undefined;
|
|
10523
|
+
anti_cheat_punch_config?: {
|
|
10524
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
10525
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
10526
|
+
check_buddy_punch?: boolean | undefined;
|
|
10527
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
10528
|
+
check_change_device_punch?: boolean | undefined;
|
|
10529
|
+
allow_change_device_num?: number | undefined;
|
|
10530
|
+
suspected_cheat_handle_method: number;
|
|
10531
|
+
} | undefined;
|
|
10347
10532
|
machines?: {
|
|
10348
10533
|
machine_sn: string;
|
|
10349
10534
|
machine_name: string;
|
|
@@ -10456,6 +10641,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10456
10641
|
} | undefined;
|
|
10457
10642
|
new_calendar_id?: string | undefined;
|
|
10458
10643
|
allow_apply_punch?: boolean | undefined;
|
|
10644
|
+
clock_in_abnormal_settings?: {
|
|
10645
|
+
ignore_until_latest_clockout?: boolean | undefined;
|
|
10646
|
+
} | undefined;
|
|
10459
10647
|
} | undefined;
|
|
10460
10648
|
}>;
|
|
10461
10649
|
listWithIterator: (payload?: {
|
|
@@ -11608,6 +11796,25 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
11608
11796
|
}[] | undefined;
|
|
11609
11797
|
} | undefined;
|
|
11610
11798
|
}>;
|
|
11799
|
+
/**
|
|
11800
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
11801
|
+
*
|
|
11802
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
11803
|
+
*
|
|
11804
|
+
* 批量删除流水
|
|
11805
|
+
*/
|
|
11806
|
+
batchDel: (payload?: {
|
|
11807
|
+
data: {
|
|
11808
|
+
record_ids: Array<string>;
|
|
11809
|
+
};
|
|
11810
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
11811
|
+
code?: number | undefined;
|
|
11812
|
+
msg?: string | undefined;
|
|
11813
|
+
data?: {
|
|
11814
|
+
success_record_ids?: string[] | undefined;
|
|
11815
|
+
fail_record_ids?: string[] | undefined;
|
|
11816
|
+
} | undefined;
|
|
11817
|
+
}>;
|
|
11611
11818
|
/**
|
|
11612
11819
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
11613
11820
|
*
|
|
@@ -12441,6 +12648,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12441
12648
|
face_live_need_action?: boolean;
|
|
12442
12649
|
face_downgrade?: boolean;
|
|
12443
12650
|
replace_basic_pic?: boolean;
|
|
12651
|
+
anti_cheat_punch_config?: {
|
|
12652
|
+
intercept_suspected_cheat_punch?: boolean;
|
|
12653
|
+
check_cheat_software_punch?: boolean;
|
|
12654
|
+
check_buddy_punch?: boolean;
|
|
12655
|
+
check_simulate_wifi_punch?: boolean;
|
|
12656
|
+
check_change_device_punch?: boolean;
|
|
12657
|
+
allow_change_device_num?: number;
|
|
12658
|
+
suspected_cheat_handle_method: number;
|
|
12659
|
+
};
|
|
12444
12660
|
machines?: Array<{
|
|
12445
12661
|
machine_sn: string;
|
|
12446
12662
|
machine_name: string;
|
|
@@ -12550,6 +12766,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12550
12766
|
};
|
|
12551
12767
|
new_calendar_id?: string;
|
|
12552
12768
|
allow_apply_punch?: boolean;
|
|
12769
|
+
clock_in_abnormal_settings?: {
|
|
12770
|
+
ignore_until_latest_clockout?: boolean;
|
|
12771
|
+
};
|
|
12553
12772
|
};
|
|
12554
12773
|
operator_id?: string;
|
|
12555
12774
|
};
|
|
@@ -12597,6 +12816,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12597
12816
|
face_live_need_action?: boolean | undefined;
|
|
12598
12817
|
face_downgrade?: boolean | undefined;
|
|
12599
12818
|
replace_basic_pic?: boolean | undefined;
|
|
12819
|
+
anti_cheat_punch_config?: {
|
|
12820
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
12821
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
12822
|
+
check_buddy_punch?: boolean | undefined;
|
|
12823
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
12824
|
+
check_change_device_punch?: boolean | undefined;
|
|
12825
|
+
allow_change_device_num?: number | undefined;
|
|
12826
|
+
suspected_cheat_handle_method: number;
|
|
12827
|
+
} | undefined;
|
|
12600
12828
|
machines?: {
|
|
12601
12829
|
machine_sn: string;
|
|
12602
12830
|
machine_name: string;
|
|
@@ -12710,6 +12938,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12710
12938
|
} | undefined;
|
|
12711
12939
|
new_calendar_id?: string | undefined;
|
|
12712
12940
|
allow_apply_punch?: boolean | undefined;
|
|
12941
|
+
clock_in_abnormal_settings?: {
|
|
12942
|
+
ignore_until_latest_clockout?: boolean | undefined;
|
|
12943
|
+
} | undefined;
|
|
12713
12944
|
} | undefined;
|
|
12714
12945
|
} | undefined;
|
|
12715
12946
|
}>;
|
|
@@ -12787,6 +13018,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12787
13018
|
face_live_need_action?: boolean | undefined;
|
|
12788
13019
|
face_downgrade?: boolean | undefined;
|
|
12789
13020
|
replace_basic_pic?: boolean | undefined;
|
|
13021
|
+
anti_cheat_punch_config?: {
|
|
13022
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
13023
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
13024
|
+
check_buddy_punch?: boolean | undefined;
|
|
13025
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
13026
|
+
check_change_device_punch?: boolean | undefined;
|
|
13027
|
+
allow_change_device_num?: number | undefined;
|
|
13028
|
+
suspected_cheat_handle_method: number;
|
|
13029
|
+
} | undefined;
|
|
12790
13030
|
machines?: {
|
|
12791
13031
|
machine_sn: string;
|
|
12792
13032
|
machine_name: string;
|
|
@@ -12899,6 +13139,9 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12899
13139
|
} | undefined;
|
|
12900
13140
|
new_calendar_id?: string | undefined;
|
|
12901
13141
|
allow_apply_punch?: boolean | undefined;
|
|
13142
|
+
clock_in_abnormal_settings?: {
|
|
13143
|
+
ignore_until_latest_clockout?: boolean | undefined;
|
|
13144
|
+
} | undefined;
|
|
12902
13145
|
} | undefined;
|
|
12903
13146
|
}>;
|
|
12904
13147
|
listWithIterator: (payload?: {
|
|
@@ -14051,6 +14294,25 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
14051
14294
|
}[] | undefined;
|
|
14052
14295
|
} | undefined;
|
|
14053
14296
|
}>;
|
|
14297
|
+
/**
|
|
14298
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
14299
|
+
*
|
|
14300
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
14301
|
+
*
|
|
14302
|
+
* 批量删除流水
|
|
14303
|
+
*/
|
|
14304
|
+
batchDel: (payload?: {
|
|
14305
|
+
data: {
|
|
14306
|
+
record_ids: Array<string>;
|
|
14307
|
+
};
|
|
14308
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
14309
|
+
code?: number | undefined;
|
|
14310
|
+
msg?: string | undefined;
|
|
14311
|
+
data?: {
|
|
14312
|
+
success_record_ids?: string[] | undefined;
|
|
14313
|
+
fail_record_ids?: string[] | undefined;
|
|
14314
|
+
} | undefined;
|
|
14315
|
+
}>;
|
|
14054
14316
|
/**
|
|
14055
14317
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
14056
14318
|
*
|
|
@@ -24913,6 +25175,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
24913
25175
|
attachments?: Array<{
|
|
24914
25176
|
file_token?: string;
|
|
24915
25177
|
}>;
|
|
25178
|
+
event_check_in?: {
|
|
25179
|
+
enable_check_in: boolean;
|
|
25180
|
+
check_in_start_time?: {
|
|
25181
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25182
|
+
duration: number;
|
|
25183
|
+
};
|
|
25184
|
+
check_in_end_time?: {
|
|
25185
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25186
|
+
duration: number;
|
|
25187
|
+
};
|
|
25188
|
+
need_notify_attendees?: boolean;
|
|
25189
|
+
};
|
|
24916
25190
|
};
|
|
24917
25191
|
params?: {
|
|
24918
25192
|
idempotency_key?: string;
|
|
@@ -24994,6 +25268,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
24994
25268
|
is_deleted?: boolean | undefined;
|
|
24995
25269
|
name?: string | undefined;
|
|
24996
25270
|
}[] | undefined;
|
|
25271
|
+
event_check_in?: {
|
|
25272
|
+
enable_check_in: boolean;
|
|
25273
|
+
check_in_start_time?: {
|
|
25274
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25275
|
+
duration: number;
|
|
25276
|
+
} | undefined;
|
|
25277
|
+
check_in_end_time?: {
|
|
25278
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25279
|
+
duration: number;
|
|
25280
|
+
} | undefined;
|
|
25281
|
+
need_notify_attendees?: boolean | undefined;
|
|
25282
|
+
} | undefined;
|
|
24997
25283
|
} | undefined;
|
|
24998
25284
|
} | undefined;
|
|
24999
25285
|
}>;
|
|
@@ -25137,6 +25423,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
25137
25423
|
file_size?: string | undefined;
|
|
25138
25424
|
name?: string | undefined;
|
|
25139
25425
|
}[] | undefined;
|
|
25426
|
+
event_check_in?: {
|
|
25427
|
+
enable_check_in: boolean;
|
|
25428
|
+
check_in_start_time?: {
|
|
25429
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25430
|
+
duration: number;
|
|
25431
|
+
} | undefined;
|
|
25432
|
+
check_in_end_time?: {
|
|
25433
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25434
|
+
duration: number;
|
|
25435
|
+
} | undefined;
|
|
25436
|
+
need_notify_attendees?: boolean | undefined;
|
|
25437
|
+
} | undefined;
|
|
25140
25438
|
} | undefined;
|
|
25141
25439
|
} | undefined;
|
|
25142
25440
|
}>;
|
|
@@ -25445,6 +25743,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
25445
25743
|
file_token?: string;
|
|
25446
25744
|
is_deleted?: boolean;
|
|
25447
25745
|
}>;
|
|
25746
|
+
event_check_in?: {
|
|
25747
|
+
enable_check_in: boolean;
|
|
25748
|
+
check_in_start_time?: {
|
|
25749
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25750
|
+
duration: number;
|
|
25751
|
+
};
|
|
25752
|
+
check_in_end_time?: {
|
|
25753
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25754
|
+
duration: number;
|
|
25755
|
+
};
|
|
25756
|
+
need_notify_attendees?: boolean;
|
|
25757
|
+
};
|
|
25448
25758
|
};
|
|
25449
25759
|
params?: {
|
|
25450
25760
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -25526,6 +25836,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
25526
25836
|
is_deleted?: boolean | undefined;
|
|
25527
25837
|
name?: string | undefined;
|
|
25528
25838
|
}[] | undefined;
|
|
25839
|
+
event_check_in?: {
|
|
25840
|
+
enable_check_in: boolean;
|
|
25841
|
+
check_in_start_time?: {
|
|
25842
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25843
|
+
duration: number;
|
|
25844
|
+
} | undefined;
|
|
25845
|
+
check_in_end_time?: {
|
|
25846
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
25847
|
+
duration: number;
|
|
25848
|
+
} | undefined;
|
|
25849
|
+
need_notify_attendees?: boolean | undefined;
|
|
25850
|
+
} | undefined;
|
|
25529
25851
|
} | undefined;
|
|
25530
25852
|
} | undefined;
|
|
25531
25853
|
}>;
|
|
@@ -26888,6 +27210,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
26888
27210
|
attachments?: Array<{
|
|
26889
27211
|
file_token?: string;
|
|
26890
27212
|
}>;
|
|
27213
|
+
event_check_in?: {
|
|
27214
|
+
enable_check_in: boolean;
|
|
27215
|
+
check_in_start_time?: {
|
|
27216
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27217
|
+
duration: number;
|
|
27218
|
+
};
|
|
27219
|
+
check_in_end_time?: {
|
|
27220
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27221
|
+
duration: number;
|
|
27222
|
+
};
|
|
27223
|
+
need_notify_attendees?: boolean;
|
|
27224
|
+
};
|
|
26891
27225
|
};
|
|
26892
27226
|
params?: {
|
|
26893
27227
|
idempotency_key?: string;
|
|
@@ -26969,6 +27303,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
26969
27303
|
is_deleted?: boolean | undefined;
|
|
26970
27304
|
name?: string | undefined;
|
|
26971
27305
|
}[] | undefined;
|
|
27306
|
+
event_check_in?: {
|
|
27307
|
+
enable_check_in: boolean;
|
|
27308
|
+
check_in_start_time?: {
|
|
27309
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27310
|
+
duration: number;
|
|
27311
|
+
} | undefined;
|
|
27312
|
+
check_in_end_time?: {
|
|
27313
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27314
|
+
duration: number;
|
|
27315
|
+
} | undefined;
|
|
27316
|
+
need_notify_attendees?: boolean | undefined;
|
|
27317
|
+
} | undefined;
|
|
26972
27318
|
} | undefined;
|
|
26973
27319
|
} | undefined;
|
|
26974
27320
|
}>;
|
|
@@ -27112,6 +27458,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
27112
27458
|
file_size?: string | undefined;
|
|
27113
27459
|
name?: string | undefined;
|
|
27114
27460
|
}[] | undefined;
|
|
27461
|
+
event_check_in?: {
|
|
27462
|
+
enable_check_in: boolean;
|
|
27463
|
+
check_in_start_time?: {
|
|
27464
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27465
|
+
duration: number;
|
|
27466
|
+
} | undefined;
|
|
27467
|
+
check_in_end_time?: {
|
|
27468
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27469
|
+
duration: number;
|
|
27470
|
+
} | undefined;
|
|
27471
|
+
need_notify_attendees?: boolean | undefined;
|
|
27472
|
+
} | undefined;
|
|
27115
27473
|
} | undefined;
|
|
27116
27474
|
} | undefined;
|
|
27117
27475
|
}>;
|
|
@@ -27420,6 +27778,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
27420
27778
|
file_token?: string;
|
|
27421
27779
|
is_deleted?: boolean;
|
|
27422
27780
|
}>;
|
|
27781
|
+
event_check_in?: {
|
|
27782
|
+
enable_check_in: boolean;
|
|
27783
|
+
check_in_start_time?: {
|
|
27784
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27785
|
+
duration: number;
|
|
27786
|
+
};
|
|
27787
|
+
check_in_end_time?: {
|
|
27788
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27789
|
+
duration: number;
|
|
27790
|
+
};
|
|
27791
|
+
need_notify_attendees?: boolean;
|
|
27792
|
+
};
|
|
27423
27793
|
};
|
|
27424
27794
|
params?: {
|
|
27425
27795
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -27501,6 +27871,18 @@ declare abstract class Client$Q extends Client$R {
|
|
|
27501
27871
|
is_deleted?: boolean | undefined;
|
|
27502
27872
|
name?: string | undefined;
|
|
27503
27873
|
}[] | undefined;
|
|
27874
|
+
event_check_in?: {
|
|
27875
|
+
enable_check_in: boolean;
|
|
27876
|
+
check_in_start_time?: {
|
|
27877
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27878
|
+
duration: number;
|
|
27879
|
+
} | undefined;
|
|
27880
|
+
check_in_end_time?: {
|
|
27881
|
+
time_type: "before_event_start" | "after_event_start" | "after_event_end";
|
|
27882
|
+
duration: number;
|
|
27883
|
+
} | undefined;
|
|
27884
|
+
need_notify_attendees?: boolean | undefined;
|
|
27885
|
+
} | undefined;
|
|
27504
27886
|
} | undefined;
|
|
27505
27887
|
} | undefined;
|
|
27506
27888
|
}>;
|
|
@@ -28298,6 +28680,8 @@ declare abstract class Client$N extends Client$O {
|
|
|
28298
28680
|
effective_date: string;
|
|
28299
28681
|
expiration_date?: string;
|
|
28300
28682
|
salary_level_id?: string;
|
|
28683
|
+
created_time?: string;
|
|
28684
|
+
updated_time?: string;
|
|
28301
28685
|
archive_items: Array<{
|
|
28302
28686
|
item_id: string;
|
|
28303
28687
|
item_result: string;
|
|
@@ -39117,6 +39501,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
39117
39501
|
};
|
|
39118
39502
|
person_id?: string;
|
|
39119
39503
|
primary_employment?: boolean;
|
|
39504
|
+
condition_worker?: boolean;
|
|
39120
39505
|
custom_fields?: Array<{
|
|
39121
39506
|
field_name: string;
|
|
39122
39507
|
value: string;
|
|
@@ -39178,6 +39563,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
39178
39563
|
on_probation?: string | undefined;
|
|
39179
39564
|
probation_end_date?: string | undefined;
|
|
39180
39565
|
primary_employment: boolean;
|
|
39566
|
+
condition_worker?: boolean | undefined;
|
|
39181
39567
|
employment_status?: {
|
|
39182
39568
|
enum_name: string;
|
|
39183
39569
|
display?: {
|
|
@@ -48489,6 +48875,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
48489
48875
|
};
|
|
48490
48876
|
person_id?: string;
|
|
48491
48877
|
primary_employment?: boolean;
|
|
48878
|
+
condition_worker?: boolean;
|
|
48492
48879
|
custom_fields?: Array<{
|
|
48493
48880
|
field_name: string;
|
|
48494
48881
|
value: string;
|
|
@@ -48550,6 +48937,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
48550
48937
|
on_probation?: string | undefined;
|
|
48551
48938
|
probation_end_date?: string | undefined;
|
|
48552
48939
|
primary_employment: boolean;
|
|
48940
|
+
condition_worker?: boolean | undefined;
|
|
48553
48941
|
employment_status?: {
|
|
48554
48942
|
enum_name: string;
|
|
48555
48943
|
display?: {
|
|
@@ -55028,6 +55416,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
55028
55416
|
}[] | undefined;
|
|
55029
55417
|
original_cost_center?: {
|
|
55030
55418
|
cost_center_id?: string | undefined;
|
|
55419
|
+
cost_center_version_id?: string | undefined;
|
|
55031
55420
|
name: Array<{
|
|
55032
55421
|
lang: string;
|
|
55033
55422
|
value: string;
|
|
@@ -55046,6 +55435,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
55046
55435
|
} | undefined;
|
|
55047
55436
|
target_cost_center?: {
|
|
55048
55437
|
cost_center_id?: string | undefined;
|
|
55438
|
+
cost_center_version_id?: string | undefined;
|
|
55049
55439
|
name: Array<{
|
|
55050
55440
|
lang: string;
|
|
55051
55441
|
value: string;
|
|
@@ -56418,6 +56808,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
56418
56808
|
data?: {
|
|
56419
56809
|
cost_center?: {
|
|
56420
56810
|
cost_center_id?: string | undefined;
|
|
56811
|
+
cost_center_version_id?: string | undefined;
|
|
56421
56812
|
name: Array<{
|
|
56422
56813
|
lang: string;
|
|
56423
56814
|
value: string;
|
|
@@ -56477,6 +56868,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
56477
56868
|
data?: {
|
|
56478
56869
|
cost_center?: {
|
|
56479
56870
|
cost_center_id?: string | undefined;
|
|
56871
|
+
cost_center_version_id?: string | undefined;
|
|
56480
56872
|
name: Array<{
|
|
56481
56873
|
lang: string;
|
|
56482
56874
|
value: string;
|
|
@@ -57363,6 +57755,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
57363
57755
|
value: string;
|
|
57364
57756
|
}[] | undefined;
|
|
57365
57757
|
} | undefined;
|
|
57758
|
+
pathway_id?: string | undefined;
|
|
57759
|
+
pathway?: {
|
|
57760
|
+
id?: string | undefined;
|
|
57761
|
+
code?: string | undefined;
|
|
57762
|
+
name: Array<{
|
|
57763
|
+
lang: string;
|
|
57764
|
+
value: string;
|
|
57765
|
+
}>;
|
|
57766
|
+
description?: {
|
|
57767
|
+
lang: string;
|
|
57768
|
+
value: string;
|
|
57769
|
+
}[] | undefined;
|
|
57770
|
+
active: boolean;
|
|
57771
|
+
custom_fields?: {
|
|
57772
|
+
custom_api_name: string;
|
|
57773
|
+
name?: {
|
|
57774
|
+
zh_cn?: string | undefined;
|
|
57775
|
+
en_us?: string | undefined;
|
|
57776
|
+
} | undefined;
|
|
57777
|
+
type?: number | undefined;
|
|
57778
|
+
value: string;
|
|
57779
|
+
}[] | undefined;
|
|
57780
|
+
} | undefined;
|
|
57366
57781
|
job_grade_id?: string | undefined;
|
|
57367
57782
|
work_location_id?: string | undefined;
|
|
57368
57783
|
job_family_id?: string | undefined;
|
|
@@ -59056,6 +59471,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
59056
59471
|
value: string;
|
|
59057
59472
|
}[] | undefined;
|
|
59058
59473
|
} | undefined;
|
|
59474
|
+
pathway_id?: string | undefined;
|
|
59475
|
+
pathway?: {
|
|
59476
|
+
id?: string | undefined;
|
|
59477
|
+
code?: string | undefined;
|
|
59478
|
+
name: Array<{
|
|
59479
|
+
lang: string;
|
|
59480
|
+
value: string;
|
|
59481
|
+
}>;
|
|
59482
|
+
description?: {
|
|
59483
|
+
lang: string;
|
|
59484
|
+
value: string;
|
|
59485
|
+
}[] | undefined;
|
|
59486
|
+
active: boolean;
|
|
59487
|
+
custom_fields?: {
|
|
59488
|
+
custom_api_name: string;
|
|
59489
|
+
name?: {
|
|
59490
|
+
zh_cn?: string | undefined;
|
|
59491
|
+
en_us?: string | undefined;
|
|
59492
|
+
} | undefined;
|
|
59493
|
+
type?: number | undefined;
|
|
59494
|
+
value: string;
|
|
59495
|
+
}[] | undefined;
|
|
59496
|
+
} | undefined;
|
|
59059
59497
|
job_grade_id?: string | undefined;
|
|
59060
59498
|
work_location_id?: string | undefined;
|
|
59061
59499
|
job_family_id?: string | undefined;
|
|
@@ -60320,6 +60758,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
60320
60758
|
value: string;
|
|
60321
60759
|
}[] | undefined;
|
|
60322
60760
|
} | undefined;
|
|
60761
|
+
pathway_id?: string | undefined;
|
|
60762
|
+
pathway?: {
|
|
60763
|
+
id?: string | undefined;
|
|
60764
|
+
code?: string | undefined;
|
|
60765
|
+
name: Array<{
|
|
60766
|
+
lang: string;
|
|
60767
|
+
value: string;
|
|
60768
|
+
}>;
|
|
60769
|
+
description?: {
|
|
60770
|
+
lang: string;
|
|
60771
|
+
value: string;
|
|
60772
|
+
}[] | undefined;
|
|
60773
|
+
active: boolean;
|
|
60774
|
+
custom_fields?: {
|
|
60775
|
+
custom_api_name: string;
|
|
60776
|
+
name?: {
|
|
60777
|
+
zh_cn?: string | undefined;
|
|
60778
|
+
en_us?: string | undefined;
|
|
60779
|
+
} | undefined;
|
|
60780
|
+
type?: number | undefined;
|
|
60781
|
+
value: string;
|
|
60782
|
+
}[] | undefined;
|
|
60783
|
+
} | undefined;
|
|
60323
60784
|
job_grade_id?: string | undefined;
|
|
60324
60785
|
work_location_id?: string | undefined;
|
|
60325
60786
|
job_family_id?: string | undefined;
|
|
@@ -61947,6 +62408,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
61947
62408
|
value: string;
|
|
61948
62409
|
}[] | undefined;
|
|
61949
62410
|
} | undefined;
|
|
62411
|
+
pathway_id?: string | undefined;
|
|
61950
62412
|
}[] | undefined;
|
|
61951
62413
|
}[] | undefined;
|
|
61952
62414
|
} | undefined;
|
|
@@ -62062,6 +62524,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
62062
62524
|
value: string;
|
|
62063
62525
|
}[] | undefined;
|
|
62064
62526
|
} | undefined;
|
|
62527
|
+
pathway_id?: string | undefined;
|
|
62065
62528
|
}[] | undefined;
|
|
62066
62529
|
}[] | undefined;
|
|
62067
62530
|
page_token?: string | undefined;
|
|
@@ -62421,7 +62884,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
62421
62884
|
}, options?: IRequestOptions$1) => Promise<{
|
|
62422
62885
|
code?: number | undefined;
|
|
62423
62886
|
msg?: string | undefined;
|
|
62424
|
-
data?: {
|
|
62887
|
+
data?: {
|
|
62888
|
+
result?: boolean | undefined;
|
|
62889
|
+
message?: string | undefined;
|
|
62890
|
+
} | undefined;
|
|
62425
62891
|
}>;
|
|
62426
62892
|
searchWithIterator: (payload?: {
|
|
62427
62893
|
data?: {
|
|
@@ -62433,6 +62899,9 @@ declare abstract class Client$J extends Client$K {
|
|
|
62433
62899
|
updated_time_start?: string;
|
|
62434
62900
|
updated_time_end?: string;
|
|
62435
62901
|
target_department_ids?: Array<string>;
|
|
62902
|
+
transfer_type_unique_identifier?: Array<string>;
|
|
62903
|
+
transfer_reason_unique_identifier?: Array<string>;
|
|
62904
|
+
exception_statuses?: Array<"pending" | "processed">;
|
|
62436
62905
|
};
|
|
62437
62906
|
params: {
|
|
62438
62907
|
page_size: number;
|
|
@@ -62587,6 +63056,9 @@ declare abstract class Client$J extends Client$K {
|
|
|
62587
63056
|
updated_time_start?: string;
|
|
62588
63057
|
updated_time_end?: string;
|
|
62589
63058
|
target_department_ids?: Array<string>;
|
|
63059
|
+
transfer_type_unique_identifier?: Array<string>;
|
|
63060
|
+
transfer_reason_unique_identifier?: Array<string>;
|
|
63061
|
+
exception_statuses?: Array<"pending" | "processed">;
|
|
62590
63062
|
};
|
|
62591
63063
|
params: {
|
|
62592
63064
|
page_size: number;
|
|
@@ -62759,6 +63231,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
62759
63231
|
effective_time: string;
|
|
62760
63232
|
expiration_time?: string | undefined;
|
|
62761
63233
|
code?: string | undefined;
|
|
63234
|
+
description: Array<{
|
|
63235
|
+
lang: string;
|
|
63236
|
+
value: string;
|
|
63237
|
+
}>;
|
|
62762
63238
|
custom_fields?: {
|
|
62763
63239
|
custom_api_name: string;
|
|
62764
63240
|
name?: {
|
|
@@ -65929,6 +66405,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
65929
66405
|
};
|
|
65930
66406
|
resident_status_specification?: string;
|
|
65931
66407
|
year_resident_tax?: string;
|
|
66408
|
+
custom_fields?: Array<{
|
|
66409
|
+
field_name: string;
|
|
66410
|
+
value: string;
|
|
66411
|
+
}>;
|
|
65932
66412
|
}>;
|
|
65933
66413
|
born_country_region?: string;
|
|
65934
66414
|
is_disabled?: boolean;
|
|
@@ -65947,6 +66427,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
65947
66427
|
issue_date?: string;
|
|
65948
66428
|
expiration_date?: string;
|
|
65949
66429
|
issued_by?: string;
|
|
66430
|
+
custom_fields?: Array<{
|
|
66431
|
+
field_name: string;
|
|
66432
|
+
value: string;
|
|
66433
|
+
}>;
|
|
65950
66434
|
}>;
|
|
65951
66435
|
spouses_working_status?: string;
|
|
65952
66436
|
is_this_person_covered_by_health_insurance?: boolean;
|
|
@@ -65981,6 +66465,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
65981
66465
|
city_id_v2?: string;
|
|
65982
66466
|
district_id_v2?: string;
|
|
65983
66467
|
};
|
|
66468
|
+
custom_fields?: Array<{
|
|
66469
|
+
field_name: string;
|
|
66470
|
+
value: string;
|
|
66471
|
+
}>;
|
|
65984
66472
|
}>;
|
|
65985
66473
|
religion?: string;
|
|
65986
66474
|
bank_account_list?: Array<{
|
|
@@ -65991,6 +66479,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
65991
66479
|
country_region_id?: string;
|
|
65992
66480
|
bank_account_usages?: Array<string>;
|
|
65993
66481
|
bank_account_type?: string;
|
|
66482
|
+
custom_fields?: Array<{
|
|
66483
|
+
field_name: string;
|
|
66484
|
+
value: string;
|
|
66485
|
+
}>;
|
|
65994
66486
|
}>;
|
|
65995
66487
|
national_id_list?: Array<{
|
|
65996
66488
|
country_region_id: string;
|
|
@@ -65999,6 +66491,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
65999
66491
|
issue_date?: string;
|
|
66000
66492
|
expiration_date?: string;
|
|
66001
66493
|
issued_by?: string;
|
|
66494
|
+
custom_fields?: Array<{
|
|
66495
|
+
field_name: string;
|
|
66496
|
+
value: string;
|
|
66497
|
+
}>;
|
|
66002
66498
|
}>;
|
|
66003
66499
|
personal_profile_list?: Array<{
|
|
66004
66500
|
personal_profile_type?: string;
|
|
@@ -66043,6 +66539,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66043
66539
|
email_usage: string;
|
|
66044
66540
|
};
|
|
66045
66541
|
is_primary?: boolean;
|
|
66542
|
+
custom_fields?: Array<{
|
|
66543
|
+
field_name: string;
|
|
66544
|
+
value: string;
|
|
66545
|
+
}>;
|
|
66046
66546
|
}>;
|
|
66047
66547
|
address_list?: Array<{
|
|
66048
66548
|
country_region_id: string;
|
|
@@ -66134,6 +66634,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66134
66634
|
reasons_for_seniority_adjustment?: string;
|
|
66135
66635
|
start_date?: string;
|
|
66136
66636
|
end_date?: string;
|
|
66637
|
+
custom_fields?: Array<{
|
|
66638
|
+
field_name: string;
|
|
66639
|
+
value: string;
|
|
66640
|
+
}>;
|
|
66137
66641
|
}>;
|
|
66138
66642
|
notice_period_probation_voluntary?: {
|
|
66139
66643
|
wk_id?: string;
|
|
@@ -66273,6 +66777,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66273
66777
|
};
|
|
66274
66778
|
resident_status_specification?: string;
|
|
66275
66779
|
year_resident_tax?: string;
|
|
66780
|
+
custom_fields?: Array<{
|
|
66781
|
+
field_name: string;
|
|
66782
|
+
value: string;
|
|
66783
|
+
}>;
|
|
66276
66784
|
}>;
|
|
66277
66785
|
born_country_region?: string;
|
|
66278
66786
|
is_disabled?: boolean;
|
|
@@ -66291,6 +66799,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66291
66799
|
issue_date?: string;
|
|
66292
66800
|
expiration_date?: string;
|
|
66293
66801
|
issued_by?: string;
|
|
66802
|
+
custom_fields?: Array<{
|
|
66803
|
+
field_name: string;
|
|
66804
|
+
value: string;
|
|
66805
|
+
}>;
|
|
66294
66806
|
}>;
|
|
66295
66807
|
spouses_working_status?: string;
|
|
66296
66808
|
is_this_person_covered_by_health_insurance?: boolean;
|
|
@@ -66325,6 +66837,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66325
66837
|
city_id_v2?: string;
|
|
66326
66838
|
district_id_v2?: string;
|
|
66327
66839
|
};
|
|
66840
|
+
custom_fields?: Array<{
|
|
66841
|
+
field_name: string;
|
|
66842
|
+
value: string;
|
|
66843
|
+
}>;
|
|
66328
66844
|
}>;
|
|
66329
66845
|
religion?: string;
|
|
66330
66846
|
bank_account_list?: Array<{
|
|
@@ -66335,6 +66851,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66335
66851
|
country_region_id?: string;
|
|
66336
66852
|
bank_account_usages?: Array<string>;
|
|
66337
66853
|
bank_account_type?: string;
|
|
66854
|
+
custom_fields?: Array<{
|
|
66855
|
+
field_name: string;
|
|
66856
|
+
value: string;
|
|
66857
|
+
}>;
|
|
66338
66858
|
}>;
|
|
66339
66859
|
national_id_list?: Array<{
|
|
66340
66860
|
country_region_id: string;
|
|
@@ -66343,6 +66863,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66343
66863
|
issue_date?: string;
|
|
66344
66864
|
expiration_date?: string;
|
|
66345
66865
|
issued_by?: string;
|
|
66866
|
+
custom_fields?: Array<{
|
|
66867
|
+
field_name: string;
|
|
66868
|
+
value: string;
|
|
66869
|
+
}>;
|
|
66346
66870
|
}>;
|
|
66347
66871
|
personal_profile_list?: Array<{
|
|
66348
66872
|
personal_profile_type?: string;
|
|
@@ -66387,6 +66911,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66387
66911
|
email_usage: string;
|
|
66388
66912
|
};
|
|
66389
66913
|
is_primary?: boolean;
|
|
66914
|
+
custom_fields?: Array<{
|
|
66915
|
+
field_name: string;
|
|
66916
|
+
value: string;
|
|
66917
|
+
}>;
|
|
66390
66918
|
}>;
|
|
66391
66919
|
address_list?: Array<{
|
|
66392
66920
|
country_region_id: string;
|
|
@@ -66498,6 +67026,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
66498
67026
|
reasons_for_seniority_adjustment?: string;
|
|
66499
67027
|
start_date?: string;
|
|
66500
67028
|
end_date?: string;
|
|
67029
|
+
custom_fields?: Array<{
|
|
67030
|
+
field_name: string;
|
|
67031
|
+
value: string;
|
|
67032
|
+
}>;
|
|
66501
67033
|
}>;
|
|
66502
67034
|
notice_period_probation_voluntary?: {
|
|
66503
67035
|
wk_id?: string;
|
|
@@ -68897,6 +69429,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
68897
69429
|
employee_subtype_ids?: Array<string>;
|
|
68898
69430
|
job_family_ids?: Array<string>;
|
|
68899
69431
|
key_word?: string;
|
|
69432
|
+
condition_worker?: boolean;
|
|
68900
69433
|
rehire?: "to_be_confirmed" | "no" | "yes";
|
|
68901
69434
|
fields?: Array<string>;
|
|
68902
69435
|
};
|
|
@@ -70075,6 +70608,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
70075
70608
|
employee_subtype_ids?: Array<string>;
|
|
70076
70609
|
job_family_ids?: Array<string>;
|
|
70077
70610
|
key_word?: string;
|
|
70611
|
+
condition_worker?: boolean;
|
|
70078
70612
|
rehire?: "to_be_confirmed" | "no" | "yes";
|
|
70079
70613
|
fields?: Array<string>;
|
|
70080
70614
|
};
|
|
@@ -71782,6 +72316,16 @@ declare abstract class Client$J extends Client$K {
|
|
|
71782
72316
|
department_value?: string;
|
|
71783
72317
|
employment_value?: string;
|
|
71784
72318
|
list_values?: Array<string>;
|
|
72319
|
+
file_value?: {
|
|
72320
|
+
open_file_id?: string;
|
|
72321
|
+
file_name?: string;
|
|
72322
|
+
length?: number;
|
|
72323
|
+
};
|
|
72324
|
+
record_values?: Array<{
|
|
72325
|
+
variable_api_name?: string;
|
|
72326
|
+
sub_value_key?: string;
|
|
72327
|
+
record_id?: string;
|
|
72328
|
+
}>;
|
|
71785
72329
|
};
|
|
71786
72330
|
sub_values?: Array<{
|
|
71787
72331
|
key?: string;
|
|
@@ -71803,6 +72347,16 @@ declare abstract class Client$J extends Client$K {
|
|
|
71803
72347
|
department_value?: string;
|
|
71804
72348
|
employment_value?: string;
|
|
71805
72349
|
list_values?: Array<string>;
|
|
72350
|
+
file_value?: {
|
|
72351
|
+
open_file_id?: string;
|
|
72352
|
+
file_name?: string;
|
|
72353
|
+
length?: number;
|
|
72354
|
+
};
|
|
72355
|
+
record_values?: Array<{
|
|
72356
|
+
variable_api_name?: string;
|
|
72357
|
+
sub_value_key?: string;
|
|
72358
|
+
record_id?: string;
|
|
72359
|
+
}>;
|
|
71806
72360
|
};
|
|
71807
72361
|
}>;
|
|
71808
72362
|
}>;
|
|
@@ -72270,6 +72824,12 @@ declare abstract class Client$J extends Client$K {
|
|
|
72270
72824
|
estimated_active_individuals?: string;
|
|
72271
72825
|
}>;
|
|
72272
72826
|
plan_value?: string;
|
|
72827
|
+
multi_period_values?: Array<{
|
|
72828
|
+
period_date?: string;
|
|
72829
|
+
workforce_plan?: string;
|
|
72830
|
+
individuals_to_be_added?: string;
|
|
72831
|
+
individuals_to_be_removed?: string;
|
|
72832
|
+
}>;
|
|
72273
72833
|
}>;
|
|
72274
72834
|
};
|
|
72275
72835
|
}, options?: IRequestOptions$1) => Promise<{
|
|
@@ -72298,6 +72858,12 @@ declare abstract class Client$J extends Client$K {
|
|
|
72298
72858
|
estimated_active_individuals?: string;
|
|
72299
72859
|
}>;
|
|
72300
72860
|
plan_value?: string;
|
|
72861
|
+
multi_period_values?: Array<{
|
|
72862
|
+
period_date?: string;
|
|
72863
|
+
workforce_plan?: string;
|
|
72864
|
+
individuals_to_be_added?: string;
|
|
72865
|
+
individuals_to_be_removed?: string;
|
|
72866
|
+
}>;
|
|
72301
72867
|
}>;
|
|
72302
72868
|
};
|
|
72303
72869
|
}, options?: IRequestOptions$1) => Promise<{
|
|
@@ -72468,6 +73034,66 @@ declare abstract class Client$J extends Client$K {
|
|
|
72468
73034
|
has_more?: boolean | undefined;
|
|
72469
73035
|
} | undefined;
|
|
72470
73036
|
}>;
|
|
73037
|
+
/**
|
|
73038
|
+
* {@link https://open.feishu.cn/api-explorer?project=corehr&resource=workforce_plan_detail&apiName=batch_v2&version=v2 click to debug }
|
|
73039
|
+
*
|
|
73040
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_v2&project=corehr&resource=workforce_plan_detail&version=v2 document }
|
|
73041
|
+
*/
|
|
73042
|
+
batchV2: (payload?: {
|
|
73043
|
+
data?: {
|
|
73044
|
+
workforce_plan_id?: string;
|
|
73045
|
+
is_centralized_reporting_project?: boolean;
|
|
73046
|
+
centralized_reporting_project_id?: string;
|
|
73047
|
+
dimension_id_in_datas?: Array<{
|
|
73048
|
+
dimension_key?: string;
|
|
73049
|
+
dimension_ids?: Array<string>;
|
|
73050
|
+
}>;
|
|
73051
|
+
};
|
|
73052
|
+
params?: {
|
|
73053
|
+
page_token?: string;
|
|
73054
|
+
page_size?: number;
|
|
73055
|
+
};
|
|
73056
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
73057
|
+
code?: number | undefined;
|
|
73058
|
+
msg?: string | undefined;
|
|
73059
|
+
data?: {
|
|
73060
|
+
workforce_plan_id?: string | undefined;
|
|
73061
|
+
centralized_reporting_project_id?: string | undefined;
|
|
73062
|
+
items?: {
|
|
73063
|
+
workforce_plan_detail_id?: string | undefined;
|
|
73064
|
+
dimension_info_datas?: {
|
|
73065
|
+
dimension_key?: string | undefined;
|
|
73066
|
+
dimension_info?: {
|
|
73067
|
+
id: string;
|
|
73068
|
+
name?: {
|
|
73069
|
+
lang: string;
|
|
73070
|
+
value: string;
|
|
73071
|
+
}[] | undefined;
|
|
73072
|
+
} | undefined;
|
|
73073
|
+
}[] | undefined;
|
|
73074
|
+
workforce_plan?: string | undefined;
|
|
73075
|
+
active_individuals?: string | undefined;
|
|
73076
|
+
individuals_to_be_added?: string | undefined;
|
|
73077
|
+
individuals_to_be_removed?: string | undefined;
|
|
73078
|
+
vacancy?: string | undefined;
|
|
73079
|
+
vacancy_including_individuals_to_be_added_and_removed?: string | undefined;
|
|
73080
|
+
fulfillment_rate?: string | undefined;
|
|
73081
|
+
fulfillment_rate_including_individuals_to_be_added_and_removed?: string | undefined;
|
|
73082
|
+
estimated_active_individuals_details?: {
|
|
73083
|
+
date?: string | undefined;
|
|
73084
|
+
estimated_active_individuals?: string | undefined;
|
|
73085
|
+
}[] | undefined;
|
|
73086
|
+
multi_period_values?: {
|
|
73087
|
+
period_date?: string | undefined;
|
|
73088
|
+
workforce_plan?: string | undefined;
|
|
73089
|
+
individuals_to_be_added?: string | undefined;
|
|
73090
|
+
individuals_to_be_removed?: string | undefined;
|
|
73091
|
+
}[] | undefined;
|
|
73092
|
+
}[] | undefined;
|
|
73093
|
+
page_token?: string | undefined;
|
|
73094
|
+
has_more?: boolean | undefined;
|
|
73095
|
+
} | undefined;
|
|
73096
|
+
}>;
|
|
72471
73097
|
};
|
|
72472
73098
|
/**
|
|
72473
73099
|
* workforce_plan_detail_row
|
|
@@ -72493,6 +73119,12 @@ declare abstract class Client$J extends Client$K {
|
|
|
72493
73119
|
estimated_active_individuals?: string;
|
|
72494
73120
|
}>;
|
|
72495
73121
|
plan_value?: string;
|
|
73122
|
+
multi_period_values?: Array<{
|
|
73123
|
+
period_date?: string;
|
|
73124
|
+
workforce_plan?: string;
|
|
73125
|
+
individuals_to_be_added?: string;
|
|
73126
|
+
individuals_to_be_removed?: string;
|
|
73127
|
+
}>;
|
|
72496
73128
|
}>;
|
|
72497
73129
|
};
|
|
72498
73130
|
}, options?: IRequestOptions$1) => Promise<{
|
|
@@ -72520,6 +73152,12 @@ declare abstract class Client$J extends Client$K {
|
|
|
72520
73152
|
estimated_active_individuals?: string;
|
|
72521
73153
|
}>;
|
|
72522
73154
|
plan_value?: string;
|
|
73155
|
+
multi_period_values?: Array<{
|
|
73156
|
+
period_date?: string;
|
|
73157
|
+
workforce_plan?: string;
|
|
73158
|
+
individuals_to_be_added?: string;
|
|
73159
|
+
individuals_to_be_removed?: string;
|
|
73160
|
+
}>;
|
|
72523
73161
|
}>;
|
|
72524
73162
|
};
|
|
72525
73163
|
}, options?: IRequestOptions$1) => Promise<{
|
|
@@ -72796,7 +73434,7 @@ declare abstract class Client$G extends Client$H {
|
|
|
72796
73434
|
}, options?: IRequestOptions$1) => Promise<{
|
|
72797
73435
|
food_manage_license?: {
|
|
72798
73436
|
entities?: {
|
|
72799
|
-
type?: "domicile" | "legal_representative" | "validity_period" | "issuer" | "issuing_authority" | "complaints_hotline" | "license_number" | "credit_code" | "
|
|
73437
|
+
type?: "operator" | "domicile" | "legal_representative" | "validity_period" | "issuer" | "issuing_authority" | "complaints_hotline" | "license_number" | "credit_code" | "premise" | "daily_supervisor" | "daily_supervisory_authorities" | "main_body" | "operating_item" | undefined;
|
|
72800
73438
|
value?: string | undefined;
|
|
72801
73439
|
}[] | undefined;
|
|
72802
73440
|
} | undefined;
|
|
@@ -174758,7 +175396,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
174758
175396
|
httpInstance: HttpInstance;
|
|
174759
175397
|
abstract formatPayload(payload?: IPayload, options?: IRequestOptions$1): Promise<Required<IPayload>>;
|
|
174760
175398
|
/**
|
|
174761
|
-
*
|
|
175399
|
+
* 云文档-文件管理
|
|
174762
175400
|
*/
|
|
174763
175401
|
drive: {
|
|
174764
175402
|
/**
|
|
@@ -175325,7 +175963,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
175325
175963
|
}>;
|
|
175326
175964
|
};
|
|
175327
175965
|
/**
|
|
175328
|
-
*
|
|
175966
|
+
* 上传
|
|
175329
175967
|
*/
|
|
175330
175968
|
file: {
|
|
175331
175969
|
/**
|
|
@@ -176163,7 +176801,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
176163
176801
|
}>;
|
|
176164
176802
|
};
|
|
176165
176803
|
/**
|
|
176166
|
-
*
|
|
176804
|
+
* 分片上传
|
|
176167
176805
|
*/
|
|
176168
176806
|
media: {
|
|
176169
176807
|
/**
|
|
@@ -177284,7 +177922,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
177284
177922
|
}>;
|
|
177285
177923
|
};
|
|
177286
177924
|
/**
|
|
177287
|
-
*
|
|
177925
|
+
* 上传
|
|
177288
177926
|
*/
|
|
177289
177927
|
file: {
|
|
177290
177928
|
/**
|
|
@@ -178122,7 +178760,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
178122
178760
|
}>;
|
|
178123
178761
|
};
|
|
178124
178762
|
/**
|
|
178125
|
-
*
|
|
178763
|
+
* 分片上传
|
|
178126
178764
|
*/
|
|
178127
178765
|
media: {
|
|
178128
178766
|
/**
|
|
@@ -184270,9 +184908,32 @@ declare abstract class Client$u extends Client$v {
|
|
|
184270
184908
|
}>;
|
|
184271
184909
|
};
|
|
184272
184910
|
/**
|
|
184273
|
-
*
|
|
184911
|
+
* 入职
|
|
184274
184912
|
*/
|
|
184275
184913
|
application: {
|
|
184914
|
+
/**
|
|
184915
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
184916
|
+
*
|
|
184917
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
184918
|
+
*
|
|
184919
|
+
* 取消候选人入职
|
|
184920
|
+
*
|
|
184921
|
+
* 操作候选人取消入职
|
|
184922
|
+
*/
|
|
184923
|
+
cancelOnboard: (payload?: {
|
|
184924
|
+
data: {
|
|
184925
|
+
termination_type: number;
|
|
184926
|
+
termination_reason_id_list?: Array<string>;
|
|
184927
|
+
termination_reason_notes?: string;
|
|
184928
|
+
};
|
|
184929
|
+
path: {
|
|
184930
|
+
application_id: string;
|
|
184931
|
+
};
|
|
184932
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
184933
|
+
code?: number | undefined;
|
|
184934
|
+
msg?: string | undefined;
|
|
184935
|
+
data?: {} | undefined;
|
|
184936
|
+
}>;
|
|
184276
184937
|
/**
|
|
184277
184938
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
184278
184939
|
*
|
|
@@ -185114,6 +185775,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
185114
185775
|
} | undefined;
|
|
185115
185776
|
position_id?: string | undefined;
|
|
185116
185777
|
job_offered?: string | undefined;
|
|
185778
|
+
job_grade_id?: string | undefined;
|
|
185117
185779
|
} | undefined;
|
|
185118
185780
|
salary_plan?: {
|
|
185119
185781
|
currency?: string | undefined;
|
|
@@ -188979,7 +189641,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
188979
189641
|
items?: {
|
|
188980
189642
|
user_id?: string | undefined;
|
|
188981
189643
|
verify_status?: number | undefined;
|
|
188982
|
-
tag_id_list?: string[] | undefined;
|
|
188983
189644
|
}[] | undefined;
|
|
188984
189645
|
} | null, void, unknown>;
|
|
188985
189646
|
}>;
|
|
@@ -189005,7 +189666,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
189005
189666
|
items?: {
|
|
189006
189667
|
user_id?: string | undefined;
|
|
189007
189668
|
verify_status?: number | undefined;
|
|
189008
|
-
tag_id_list?: string[] | undefined;
|
|
189009
189669
|
}[] | undefined;
|
|
189010
189670
|
page_token?: string | undefined;
|
|
189011
189671
|
has_more?: boolean | undefined;
|
|
@@ -189021,7 +189681,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
189021
189681
|
interviewer: {
|
|
189022
189682
|
user_id?: string;
|
|
189023
189683
|
verify_status?: number;
|
|
189024
|
-
tag_id_list?: Array<string>;
|
|
189025
189684
|
};
|
|
189026
189685
|
};
|
|
189027
189686
|
params?: {
|
|
@@ -189037,7 +189696,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
189037
189696
|
interviewer?: {
|
|
189038
189697
|
user_id?: string | undefined;
|
|
189039
189698
|
verify_status?: number | undefined;
|
|
189040
|
-
tag_id_list?: string[] | undefined;
|
|
189041
189699
|
} | undefined;
|
|
189042
189700
|
} | undefined;
|
|
189043
189701
|
}>;
|
|
@@ -191057,6 +191715,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
191057
191715
|
update_time?: string | undefined;
|
|
191058
191716
|
employment_job_id?: string | undefined;
|
|
191059
191717
|
position_id?: string | undefined;
|
|
191718
|
+
completion_time?: string | undefined;
|
|
191719
|
+
approval_status?: number | undefined;
|
|
191060
191720
|
} | undefined;
|
|
191061
191721
|
} | undefined;
|
|
191062
191722
|
}>;
|
|
@@ -191238,6 +191898,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
191238
191898
|
update_time?: string | undefined;
|
|
191239
191899
|
employment_job_id?: string | undefined;
|
|
191240
191900
|
position_id?: string | undefined;
|
|
191901
|
+
completion_time?: string | undefined;
|
|
191902
|
+
approval_status?: number | undefined;
|
|
191241
191903
|
}[] | undefined;
|
|
191242
191904
|
} | undefined;
|
|
191243
191905
|
}>;
|
|
@@ -191251,6 +191913,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
191251
191913
|
listById: (payload?: {
|
|
191252
191914
|
data?: {
|
|
191253
191915
|
id_list?: Array<string>;
|
|
191916
|
+
short_code_list?: Array<string>;
|
|
191254
191917
|
};
|
|
191255
191918
|
params?: {
|
|
191256
191919
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -191393,6 +192056,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
191393
192056
|
update_time?: string | undefined;
|
|
191394
192057
|
employment_job_id?: string | undefined;
|
|
191395
192058
|
position_id?: string | undefined;
|
|
192059
|
+
completion_time?: string | undefined;
|
|
192060
|
+
approval_status?: number | undefined;
|
|
191396
192061
|
}[] | undefined;
|
|
191397
192062
|
} | undefined;
|
|
191398
192063
|
}>;
|
|
@@ -192138,6 +192803,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192138
192803
|
operator_user_id: string;
|
|
192139
192804
|
position_id?: string;
|
|
192140
192805
|
job_offered?: string;
|
|
192806
|
+
job_grade_id?: string;
|
|
192141
192807
|
};
|
|
192142
192808
|
salary_info?: {
|
|
192143
192809
|
currency: string;
|
|
@@ -192193,6 +192859,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192193
192859
|
operator_user_id: string;
|
|
192194
192860
|
position_id?: string | undefined;
|
|
192195
192861
|
job_offered?: string | undefined;
|
|
192862
|
+
job_grade_id?: string | undefined;
|
|
192196
192863
|
} | undefined;
|
|
192197
192864
|
salary_info?: {
|
|
192198
192865
|
currency: string;
|
|
@@ -192348,6 +193015,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192348
193015
|
} | undefined;
|
|
192349
193016
|
position_id?: string | undefined;
|
|
192350
193017
|
job_offered?: string | undefined;
|
|
193018
|
+
job_grade_id?: string | undefined;
|
|
192351
193019
|
} | undefined;
|
|
192352
193020
|
salary_plan?: {
|
|
192353
193021
|
currency?: string | undefined;
|
|
@@ -192553,6 +193221,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192553
193221
|
operator_user_id: string;
|
|
192554
193222
|
position_id?: string;
|
|
192555
193223
|
job_offered?: string;
|
|
193224
|
+
job_grade_id?: string;
|
|
192556
193225
|
};
|
|
192557
193226
|
salary_info?: {
|
|
192558
193227
|
currency: string;
|
|
@@ -192609,6 +193278,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192609
193278
|
operator_user_id: string;
|
|
192610
193279
|
position_id?: string | undefined;
|
|
192611
193280
|
job_offered?: string | undefined;
|
|
193281
|
+
job_grade_id?: string | undefined;
|
|
192612
193282
|
} | undefined;
|
|
192613
193283
|
salary_info?: {
|
|
192614
193284
|
currency: string;
|
|
@@ -193229,7 +193899,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
193229
193899
|
check_failed_list?: {
|
|
193230
193900
|
account_id?: string | undefined;
|
|
193231
193901
|
total_withdraw_reward_info?: {
|
|
193232
|
-
bonus_type?: number | undefined;
|
|
193233
193902
|
point_bonus?: number | undefined;
|
|
193234
193903
|
cash?: {
|
|
193235
193904
|
currency_type: string;
|
|
@@ -193241,7 +193910,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
193241
193910
|
}[] | undefined;
|
|
193242
193911
|
} | undefined;
|
|
193243
193912
|
total_recharge_reward_info?: {
|
|
193244
|
-
bonus_type?: number | undefined;
|
|
193245
193913
|
point_bonus?: number | undefined;
|
|
193246
193914
|
cash?: {
|
|
193247
193915
|
currency_type: string;
|
|
@@ -194422,6 +195090,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194422
195090
|
hometown_city_code?: string;
|
|
194423
195091
|
customized_data?: Array<{
|
|
194424
195092
|
object_id?: string;
|
|
195093
|
+
value?: string;
|
|
194425
195094
|
children?: Array<{
|
|
194426
195095
|
object_id?: string;
|
|
194427
195096
|
value?: string;
|
|
@@ -194439,6 +195108,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194439
195108
|
academic_ranking?: number;
|
|
194440
195109
|
customized_data?: Array<{
|
|
194441
195110
|
object_id?: string;
|
|
195111
|
+
value?: string;
|
|
194442
195112
|
children?: Array<{
|
|
194443
195113
|
object_id?: string;
|
|
194444
195114
|
value?: string;
|
|
@@ -194455,6 +195125,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194455
195125
|
career_type?: number;
|
|
194456
195126
|
customized_data?: Array<{
|
|
194457
195127
|
object_id?: string;
|
|
195128
|
+
value?: string;
|
|
194458
195129
|
children?: Array<{
|
|
194459
195130
|
object_id?: string;
|
|
194460
195131
|
value?: string;
|
|
@@ -194471,6 +195142,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194471
195142
|
end_time?: string;
|
|
194472
195143
|
customized_data?: Array<{
|
|
194473
195144
|
object_id?: string;
|
|
195145
|
+
value?: string;
|
|
194474
195146
|
children?: Array<{
|
|
194475
195147
|
object_id?: string;
|
|
194476
195148
|
value?: string;
|
|
@@ -194484,6 +195156,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194484
195156
|
attachment_id?: string;
|
|
194485
195157
|
customized_data?: Array<{
|
|
194486
195158
|
object_id?: string;
|
|
195159
|
+
value?: string;
|
|
194487
195160
|
children?: Array<{
|
|
194488
195161
|
object_id?: string;
|
|
194489
195162
|
value?: string;
|
|
@@ -194497,6 +195170,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194497
195170
|
desc?: string;
|
|
194498
195171
|
customized_data?: Array<{
|
|
194499
195172
|
object_id?: string;
|
|
195173
|
+
value?: string;
|
|
194500
195174
|
children?: Array<{
|
|
194501
195175
|
object_id?: string;
|
|
194502
195176
|
value?: string;
|
|
@@ -194509,6 +195183,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194509
195183
|
proficiency?: number;
|
|
194510
195184
|
customized_data?: Array<{
|
|
194511
195185
|
object_id?: string;
|
|
195186
|
+
value?: string;
|
|
194512
195187
|
children?: Array<{
|
|
194513
195188
|
object_id?: string;
|
|
194514
195189
|
value?: string;
|
|
@@ -194521,6 +195196,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194521
195196
|
link?: string;
|
|
194522
195197
|
customized_data?: Array<{
|
|
194523
195198
|
object_id?: string;
|
|
195199
|
+
value?: string;
|
|
194524
195200
|
children?: Array<{
|
|
194525
195201
|
object_id?: string;
|
|
194526
195202
|
value?: string;
|
|
@@ -194533,6 +195209,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194533
195209
|
content?: string;
|
|
194534
195210
|
customized_data?: Array<{
|
|
194535
195211
|
object_id?: string;
|
|
195212
|
+
value?: string;
|
|
194536
195213
|
children?: Array<{
|
|
194537
195214
|
object_id?: string;
|
|
194538
195215
|
value?: string;
|
|
@@ -194541,6 +195218,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194541
195218
|
};
|
|
194542
195219
|
customized_data?: Array<{
|
|
194543
195220
|
object_id?: string;
|
|
195221
|
+
value?: string;
|
|
194544
195222
|
children?: Array<{
|
|
194545
195223
|
object_id?: string;
|
|
194546
195224
|
value?: string;
|
|
@@ -194593,6 +195271,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194593
195271
|
hometown_city_code?: string;
|
|
194594
195272
|
customized_data?: Array<{
|
|
194595
195273
|
object_id?: string;
|
|
195274
|
+
value?: string;
|
|
194596
195275
|
children?: Array<{
|
|
194597
195276
|
object_id?: string;
|
|
194598
195277
|
value?: string;
|
|
@@ -194610,6 +195289,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194610
195289
|
academic_ranking?: number;
|
|
194611
195290
|
customized_data?: Array<{
|
|
194612
195291
|
object_id?: string;
|
|
195292
|
+
value?: string;
|
|
194613
195293
|
children?: Array<{
|
|
194614
195294
|
object_id?: string;
|
|
194615
195295
|
value?: string;
|
|
@@ -194626,6 +195306,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194626
195306
|
career_type?: number;
|
|
194627
195307
|
customized_data?: Array<{
|
|
194628
195308
|
object_id?: string;
|
|
195309
|
+
value?: string;
|
|
194629
195310
|
children?: Array<{
|
|
194630
195311
|
object_id?: string;
|
|
194631
195312
|
value?: string;
|
|
@@ -194642,6 +195323,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194642
195323
|
end_time?: string;
|
|
194643
195324
|
customized_data?: Array<{
|
|
194644
195325
|
object_id?: string;
|
|
195326
|
+
value?: string;
|
|
194645
195327
|
children?: Array<{
|
|
194646
195328
|
object_id?: string;
|
|
194647
195329
|
value?: string;
|
|
@@ -194655,6 +195337,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194655
195337
|
attachment_id?: string;
|
|
194656
195338
|
customized_data?: Array<{
|
|
194657
195339
|
object_id?: string;
|
|
195340
|
+
value?: string;
|
|
194658
195341
|
children?: Array<{
|
|
194659
195342
|
object_id?: string;
|
|
194660
195343
|
value?: string;
|
|
@@ -194668,6 +195351,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194668
195351
|
desc?: string;
|
|
194669
195352
|
customized_data?: Array<{
|
|
194670
195353
|
object_id?: string;
|
|
195354
|
+
value?: string;
|
|
194671
195355
|
children?: Array<{
|
|
194672
195356
|
object_id?: string;
|
|
194673
195357
|
value?: string;
|
|
@@ -194680,6 +195364,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194680
195364
|
proficiency?: number;
|
|
194681
195365
|
customized_data?: Array<{
|
|
194682
195366
|
object_id?: string;
|
|
195367
|
+
value?: string;
|
|
194683
195368
|
children?: Array<{
|
|
194684
195369
|
object_id?: string;
|
|
194685
195370
|
value?: string;
|
|
@@ -194692,6 +195377,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194692
195377
|
link?: string;
|
|
194693
195378
|
customized_data?: Array<{
|
|
194694
195379
|
object_id?: string;
|
|
195380
|
+
value?: string;
|
|
194695
195381
|
children?: Array<{
|
|
194696
195382
|
object_id?: string;
|
|
194697
195383
|
value?: string;
|
|
@@ -194704,6 +195390,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194704
195390
|
content?: string;
|
|
194705
195391
|
customized_data?: Array<{
|
|
194706
195392
|
object_id?: string;
|
|
195393
|
+
value?: string;
|
|
194707
195394
|
children?: Array<{
|
|
194708
195395
|
object_id?: string;
|
|
194709
195396
|
value?: string;
|
|
@@ -194712,6 +195399,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194712
195399
|
};
|
|
194713
195400
|
customized_data?: Array<{
|
|
194714
195401
|
object_id?: string;
|
|
195402
|
+
value?: string;
|
|
194715
195403
|
children?: Array<{
|
|
194716
195404
|
object_id?: string;
|
|
194717
195405
|
value?: string;
|
|
@@ -198143,9 +198831,32 @@ declare abstract class Client$u extends Client$v {
|
|
|
198143
198831
|
}>;
|
|
198144
198832
|
};
|
|
198145
198833
|
/**
|
|
198146
|
-
*
|
|
198834
|
+
* 入职
|
|
198147
198835
|
*/
|
|
198148
198836
|
application: {
|
|
198837
|
+
/**
|
|
198838
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
198839
|
+
*
|
|
198840
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
198841
|
+
*
|
|
198842
|
+
* 取消候选人入职
|
|
198843
|
+
*
|
|
198844
|
+
* 操作候选人取消入职
|
|
198845
|
+
*/
|
|
198846
|
+
cancelOnboard: (payload?: {
|
|
198847
|
+
data: {
|
|
198848
|
+
termination_type: number;
|
|
198849
|
+
termination_reason_id_list?: Array<string>;
|
|
198850
|
+
termination_reason_notes?: string;
|
|
198851
|
+
};
|
|
198852
|
+
path: {
|
|
198853
|
+
application_id: string;
|
|
198854
|
+
};
|
|
198855
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
198856
|
+
code?: number | undefined;
|
|
198857
|
+
msg?: string | undefined;
|
|
198858
|
+
data?: {} | undefined;
|
|
198859
|
+
}>;
|
|
198149
198860
|
/**
|
|
198150
198861
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
198151
198862
|
*
|
|
@@ -198987,6 +199698,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
198987
199698
|
} | undefined;
|
|
198988
199699
|
position_id?: string | undefined;
|
|
198989
199700
|
job_offered?: string | undefined;
|
|
199701
|
+
job_grade_id?: string | undefined;
|
|
198990
199702
|
} | undefined;
|
|
198991
199703
|
salary_plan?: {
|
|
198992
199704
|
currency?: string | undefined;
|
|
@@ -202852,7 +203564,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
202852
203564
|
items?: {
|
|
202853
203565
|
user_id?: string | undefined;
|
|
202854
203566
|
verify_status?: number | undefined;
|
|
202855
|
-
tag_id_list?: string[] | undefined;
|
|
202856
203567
|
}[] | undefined;
|
|
202857
203568
|
} | null, void, unknown>;
|
|
202858
203569
|
}>;
|
|
@@ -202878,7 +203589,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
202878
203589
|
items?: {
|
|
202879
203590
|
user_id?: string | undefined;
|
|
202880
203591
|
verify_status?: number | undefined;
|
|
202881
|
-
tag_id_list?: string[] | undefined;
|
|
202882
203592
|
}[] | undefined;
|
|
202883
203593
|
page_token?: string | undefined;
|
|
202884
203594
|
has_more?: boolean | undefined;
|
|
@@ -202894,7 +203604,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
202894
203604
|
interviewer: {
|
|
202895
203605
|
user_id?: string;
|
|
202896
203606
|
verify_status?: number;
|
|
202897
|
-
tag_id_list?: Array<string>;
|
|
202898
203607
|
};
|
|
202899
203608
|
};
|
|
202900
203609
|
params?: {
|
|
@@ -202910,7 +203619,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
202910
203619
|
interviewer?: {
|
|
202911
203620
|
user_id?: string | undefined;
|
|
202912
203621
|
verify_status?: number | undefined;
|
|
202913
|
-
tag_id_list?: string[] | undefined;
|
|
202914
203622
|
} | undefined;
|
|
202915
203623
|
} | undefined;
|
|
202916
203624
|
}>;
|
|
@@ -204930,6 +205638,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
204930
205638
|
update_time?: string | undefined;
|
|
204931
205639
|
employment_job_id?: string | undefined;
|
|
204932
205640
|
position_id?: string | undefined;
|
|
205641
|
+
completion_time?: string | undefined;
|
|
205642
|
+
approval_status?: number | undefined;
|
|
204933
205643
|
} | undefined;
|
|
204934
205644
|
} | undefined;
|
|
204935
205645
|
}>;
|
|
@@ -205111,6 +205821,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
205111
205821
|
update_time?: string | undefined;
|
|
205112
205822
|
employment_job_id?: string | undefined;
|
|
205113
205823
|
position_id?: string | undefined;
|
|
205824
|
+
completion_time?: string | undefined;
|
|
205825
|
+
approval_status?: number | undefined;
|
|
205114
205826
|
}[] | undefined;
|
|
205115
205827
|
} | undefined;
|
|
205116
205828
|
}>;
|
|
@@ -205124,6 +205836,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
205124
205836
|
listById: (payload?: {
|
|
205125
205837
|
data?: {
|
|
205126
205838
|
id_list?: Array<string>;
|
|
205839
|
+
short_code_list?: Array<string>;
|
|
205127
205840
|
};
|
|
205128
205841
|
params?: {
|
|
205129
205842
|
user_id_type?: "user_id" | "union_id" | "open_id";
|
|
@@ -205266,6 +205979,8 @@ declare abstract class Client$u extends Client$v {
|
|
|
205266
205979
|
update_time?: string | undefined;
|
|
205267
205980
|
employment_job_id?: string | undefined;
|
|
205268
205981
|
position_id?: string | undefined;
|
|
205982
|
+
completion_time?: string | undefined;
|
|
205983
|
+
approval_status?: number | undefined;
|
|
205269
205984
|
}[] | undefined;
|
|
205270
205985
|
} | undefined;
|
|
205271
205986
|
}>;
|
|
@@ -206011,6 +206726,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206011
206726
|
operator_user_id: string;
|
|
206012
206727
|
position_id?: string;
|
|
206013
206728
|
job_offered?: string;
|
|
206729
|
+
job_grade_id?: string;
|
|
206014
206730
|
};
|
|
206015
206731
|
salary_info?: {
|
|
206016
206732
|
currency: string;
|
|
@@ -206066,6 +206782,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206066
206782
|
operator_user_id: string;
|
|
206067
206783
|
position_id?: string | undefined;
|
|
206068
206784
|
job_offered?: string | undefined;
|
|
206785
|
+
job_grade_id?: string | undefined;
|
|
206069
206786
|
} | undefined;
|
|
206070
206787
|
salary_info?: {
|
|
206071
206788
|
currency: string;
|
|
@@ -206221,6 +206938,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206221
206938
|
} | undefined;
|
|
206222
206939
|
position_id?: string | undefined;
|
|
206223
206940
|
job_offered?: string | undefined;
|
|
206941
|
+
job_grade_id?: string | undefined;
|
|
206224
206942
|
} | undefined;
|
|
206225
206943
|
salary_plan?: {
|
|
206226
206944
|
currency?: string | undefined;
|
|
@@ -206426,6 +207144,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206426
207144
|
operator_user_id: string;
|
|
206427
207145
|
position_id?: string;
|
|
206428
207146
|
job_offered?: string;
|
|
207147
|
+
job_grade_id?: string;
|
|
206429
207148
|
};
|
|
206430
207149
|
salary_info?: {
|
|
206431
207150
|
currency: string;
|
|
@@ -206482,6 +207201,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206482
207201
|
operator_user_id: string;
|
|
206483
207202
|
position_id?: string | undefined;
|
|
206484
207203
|
job_offered?: string | undefined;
|
|
207204
|
+
job_grade_id?: string | undefined;
|
|
206485
207205
|
} | undefined;
|
|
206486
207206
|
salary_info?: {
|
|
206487
207207
|
currency: string;
|
|
@@ -207102,7 +207822,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
207102
207822
|
check_failed_list?: {
|
|
207103
207823
|
account_id?: string | undefined;
|
|
207104
207824
|
total_withdraw_reward_info?: {
|
|
207105
|
-
bonus_type?: number | undefined;
|
|
207106
207825
|
point_bonus?: number | undefined;
|
|
207107
207826
|
cash?: {
|
|
207108
207827
|
currency_type: string;
|
|
@@ -207114,7 +207833,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
207114
207833
|
}[] | undefined;
|
|
207115
207834
|
} | undefined;
|
|
207116
207835
|
total_recharge_reward_info?: {
|
|
207117
|
-
bonus_type?: number | undefined;
|
|
207118
207836
|
point_bonus?: number | undefined;
|
|
207119
207837
|
cash?: {
|
|
207120
207838
|
currency_type: string;
|
|
@@ -208295,6 +209013,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208295
209013
|
hometown_city_code?: string;
|
|
208296
209014
|
customized_data?: Array<{
|
|
208297
209015
|
object_id?: string;
|
|
209016
|
+
value?: string;
|
|
208298
209017
|
children?: Array<{
|
|
208299
209018
|
object_id?: string;
|
|
208300
209019
|
value?: string;
|
|
@@ -208312,6 +209031,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208312
209031
|
academic_ranking?: number;
|
|
208313
209032
|
customized_data?: Array<{
|
|
208314
209033
|
object_id?: string;
|
|
209034
|
+
value?: string;
|
|
208315
209035
|
children?: Array<{
|
|
208316
209036
|
object_id?: string;
|
|
208317
209037
|
value?: string;
|
|
@@ -208328,6 +209048,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208328
209048
|
career_type?: number;
|
|
208329
209049
|
customized_data?: Array<{
|
|
208330
209050
|
object_id?: string;
|
|
209051
|
+
value?: string;
|
|
208331
209052
|
children?: Array<{
|
|
208332
209053
|
object_id?: string;
|
|
208333
209054
|
value?: string;
|
|
@@ -208344,6 +209065,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208344
209065
|
end_time?: string;
|
|
208345
209066
|
customized_data?: Array<{
|
|
208346
209067
|
object_id?: string;
|
|
209068
|
+
value?: string;
|
|
208347
209069
|
children?: Array<{
|
|
208348
209070
|
object_id?: string;
|
|
208349
209071
|
value?: string;
|
|
@@ -208357,6 +209079,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208357
209079
|
attachment_id?: string;
|
|
208358
209080
|
customized_data?: Array<{
|
|
208359
209081
|
object_id?: string;
|
|
209082
|
+
value?: string;
|
|
208360
209083
|
children?: Array<{
|
|
208361
209084
|
object_id?: string;
|
|
208362
209085
|
value?: string;
|
|
@@ -208370,6 +209093,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208370
209093
|
desc?: string;
|
|
208371
209094
|
customized_data?: Array<{
|
|
208372
209095
|
object_id?: string;
|
|
209096
|
+
value?: string;
|
|
208373
209097
|
children?: Array<{
|
|
208374
209098
|
object_id?: string;
|
|
208375
209099
|
value?: string;
|
|
@@ -208382,6 +209106,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208382
209106
|
proficiency?: number;
|
|
208383
209107
|
customized_data?: Array<{
|
|
208384
209108
|
object_id?: string;
|
|
209109
|
+
value?: string;
|
|
208385
209110
|
children?: Array<{
|
|
208386
209111
|
object_id?: string;
|
|
208387
209112
|
value?: string;
|
|
@@ -208394,6 +209119,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208394
209119
|
link?: string;
|
|
208395
209120
|
customized_data?: Array<{
|
|
208396
209121
|
object_id?: string;
|
|
209122
|
+
value?: string;
|
|
208397
209123
|
children?: Array<{
|
|
208398
209124
|
object_id?: string;
|
|
208399
209125
|
value?: string;
|
|
@@ -208406,6 +209132,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208406
209132
|
content?: string;
|
|
208407
209133
|
customized_data?: Array<{
|
|
208408
209134
|
object_id?: string;
|
|
209135
|
+
value?: string;
|
|
208409
209136
|
children?: Array<{
|
|
208410
209137
|
object_id?: string;
|
|
208411
209138
|
value?: string;
|
|
@@ -208414,6 +209141,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208414
209141
|
};
|
|
208415
209142
|
customized_data?: Array<{
|
|
208416
209143
|
object_id?: string;
|
|
209144
|
+
value?: string;
|
|
208417
209145
|
children?: Array<{
|
|
208418
209146
|
object_id?: string;
|
|
208419
209147
|
value?: string;
|
|
@@ -208466,6 +209194,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208466
209194
|
hometown_city_code?: string;
|
|
208467
209195
|
customized_data?: Array<{
|
|
208468
209196
|
object_id?: string;
|
|
209197
|
+
value?: string;
|
|
208469
209198
|
children?: Array<{
|
|
208470
209199
|
object_id?: string;
|
|
208471
209200
|
value?: string;
|
|
@@ -208483,6 +209212,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208483
209212
|
academic_ranking?: number;
|
|
208484
209213
|
customized_data?: Array<{
|
|
208485
209214
|
object_id?: string;
|
|
209215
|
+
value?: string;
|
|
208486
209216
|
children?: Array<{
|
|
208487
209217
|
object_id?: string;
|
|
208488
209218
|
value?: string;
|
|
@@ -208499,6 +209229,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208499
209229
|
career_type?: number;
|
|
208500
209230
|
customized_data?: Array<{
|
|
208501
209231
|
object_id?: string;
|
|
209232
|
+
value?: string;
|
|
208502
209233
|
children?: Array<{
|
|
208503
209234
|
object_id?: string;
|
|
208504
209235
|
value?: string;
|
|
@@ -208515,6 +209246,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208515
209246
|
end_time?: string;
|
|
208516
209247
|
customized_data?: Array<{
|
|
208517
209248
|
object_id?: string;
|
|
209249
|
+
value?: string;
|
|
208518
209250
|
children?: Array<{
|
|
208519
209251
|
object_id?: string;
|
|
208520
209252
|
value?: string;
|
|
@@ -208528,6 +209260,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208528
209260
|
attachment_id?: string;
|
|
208529
209261
|
customized_data?: Array<{
|
|
208530
209262
|
object_id?: string;
|
|
209263
|
+
value?: string;
|
|
208531
209264
|
children?: Array<{
|
|
208532
209265
|
object_id?: string;
|
|
208533
209266
|
value?: string;
|
|
@@ -208541,6 +209274,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208541
209274
|
desc?: string;
|
|
208542
209275
|
customized_data?: Array<{
|
|
208543
209276
|
object_id?: string;
|
|
209277
|
+
value?: string;
|
|
208544
209278
|
children?: Array<{
|
|
208545
209279
|
object_id?: string;
|
|
208546
209280
|
value?: string;
|
|
@@ -208553,6 +209287,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208553
209287
|
proficiency?: number;
|
|
208554
209288
|
customized_data?: Array<{
|
|
208555
209289
|
object_id?: string;
|
|
209290
|
+
value?: string;
|
|
208556
209291
|
children?: Array<{
|
|
208557
209292
|
object_id?: string;
|
|
208558
209293
|
value?: string;
|
|
@@ -208565,6 +209300,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208565
209300
|
link?: string;
|
|
208566
209301
|
customized_data?: Array<{
|
|
208567
209302
|
object_id?: string;
|
|
209303
|
+
value?: string;
|
|
208568
209304
|
children?: Array<{
|
|
208569
209305
|
object_id?: string;
|
|
208570
209306
|
value?: string;
|
|
@@ -208577,6 +209313,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208577
209313
|
content?: string;
|
|
208578
209314
|
customized_data?: Array<{
|
|
208579
209315
|
object_id?: string;
|
|
209316
|
+
value?: string;
|
|
208580
209317
|
children?: Array<{
|
|
208581
209318
|
object_id?: string;
|
|
208582
209319
|
value?: string;
|
|
@@ -208585,6 +209322,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208585
209322
|
};
|
|
208586
209323
|
customized_data?: Array<{
|
|
208587
209324
|
object_id?: string;
|
|
209325
|
+
value?: string;
|
|
208588
209326
|
children?: Array<{
|
|
208589
209327
|
object_id?: string;
|
|
208590
209328
|
value?: string;
|
|
@@ -213390,7 +214128,7 @@ declare abstract class Client$s extends Client$t {
|
|
|
213390
214128
|
}>;
|
|
213391
214129
|
};
|
|
213392
214130
|
/**
|
|
213393
|
-
*
|
|
214131
|
+
* 消息加急
|
|
213394
214132
|
*/
|
|
213395
214133
|
message: {
|
|
213396
214134
|
/**
|
|
@@ -216038,7 +216776,7 @@ declare abstract class Client$s extends Client$t {
|
|
|
216038
216776
|
}>;
|
|
216039
216777
|
};
|
|
216040
216778
|
/**
|
|
216041
|
-
*
|
|
216779
|
+
* 消息加急
|
|
216042
216780
|
*/
|
|
216043
216781
|
message: {
|
|
216044
216782
|
/**
|
|
@@ -226851,7 +227589,7 @@ declare abstract class Client$c extends Client$d {
|
|
|
226851
227589
|
}>;
|
|
226852
227590
|
};
|
|
226853
227591
|
/**
|
|
226854
|
-
*
|
|
227592
|
+
* 工作表
|
|
226855
227593
|
*/
|
|
226856
227594
|
spreadsheetSheet: {
|
|
226857
227595
|
/**
|
|
@@ -227690,7 +228428,7 @@ declare abstract class Client$c extends Client$d {
|
|
|
227690
228428
|
}>;
|
|
227691
228429
|
};
|
|
227692
228430
|
/**
|
|
227693
|
-
*
|
|
228431
|
+
* 工作表
|
|
227694
228432
|
*/
|
|
227695
228433
|
spreadsheetSheet: {
|
|
227696
228434
|
/**
|
|
@@ -242527,7 +243265,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
242527
243265
|
scope: string;
|
|
242528
243266
|
description?: string;
|
|
242529
243267
|
level?: number;
|
|
242530
|
-
token_types?: Array<
|
|
243268
|
+
token_types?: Array<"tenant" | "user">;
|
|
242531
243269
|
}>;
|
|
242532
243270
|
back_home_url?: string;
|
|
242533
243271
|
i18n?: Array<{
|
|
@@ -242641,7 +243379,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
242641
243379
|
scope: string;
|
|
242642
243380
|
description?: string;
|
|
242643
243381
|
level?: number;
|
|
242644
|
-
token_types?: Array<
|
|
243382
|
+
token_types?: Array<"tenant" | "user">;
|
|
242645
243383
|
}>;
|
|
242646
243384
|
back_home_url?: string;
|
|
242647
243385
|
i18n?: Array<{
|
|
@@ -244715,6 +245453,37 @@ interface IHandles extends IOtherEventHandles {
|
|
|
244715
245453
|
cost_center_id?: string;
|
|
244716
245454
|
field_changes?: Array<string>;
|
|
244717
245455
|
}) => Promise<any> | any;
|
|
245456
|
+
/**
|
|
245457
|
+
|
|
245458
|
+
*/
|
|
245459
|
+
"corehr.department.created_v2"?: (data: {
|
|
245460
|
+
event_id?: string;
|
|
245461
|
+
token?: string;
|
|
245462
|
+
create_time?: string;
|
|
245463
|
+
event_type?: string;
|
|
245464
|
+
tenant_key?: string;
|
|
245465
|
+
ts?: string;
|
|
245466
|
+
uuid?: string;
|
|
245467
|
+
type?: string;
|
|
245468
|
+
app_id?: string;
|
|
245469
|
+
department_id?: string;
|
|
245470
|
+
}) => Promise<any> | any;
|
|
245471
|
+
/**
|
|
245472
|
+
|
|
245473
|
+
*/
|
|
245474
|
+
"corehr.department.updated_v2"?: (data: {
|
|
245475
|
+
event_id?: string;
|
|
245476
|
+
token?: string;
|
|
245477
|
+
create_time?: string;
|
|
245478
|
+
event_type?: string;
|
|
245479
|
+
tenant_key?: string;
|
|
245480
|
+
ts?: string;
|
|
245481
|
+
uuid?: string;
|
|
245482
|
+
type?: string;
|
|
245483
|
+
app_id?: string;
|
|
245484
|
+
department_id?: string;
|
|
245485
|
+
field_changes?: Array<string>;
|
|
245486
|
+
}) => Promise<any> | any;
|
|
244718
245487
|
/**
|
|
244719
245488
|
|
|
244720
245489
|
*/
|
|
@@ -246795,50 +247564,6 @@ interface IHandles extends IOtherEventHandles {
|
|
|
246795
247564
|
id?: string;
|
|
246796
247565
|
post_id?: string;
|
|
246797
247566
|
}) => Promise<any> | any;
|
|
246798
|
-
/**
|
|
246799
|
-
|
|
246800
|
-
*/
|
|
246801
|
-
"moments.dislike.created_v1"?: (data: {
|
|
246802
|
-
event_id?: string;
|
|
246803
|
-
token?: string;
|
|
246804
|
-
create_time?: string;
|
|
246805
|
-
event_type?: string;
|
|
246806
|
-
tenant_key?: string;
|
|
246807
|
-
ts?: string;
|
|
246808
|
-
uuid?: string;
|
|
246809
|
-
type?: string;
|
|
246810
|
-
app_id?: string;
|
|
246811
|
-
entity_type?: number;
|
|
246812
|
-
entity_id?: string;
|
|
246813
|
-
user_id?: {
|
|
246814
|
-
union_id?: string;
|
|
246815
|
-
user_id?: string;
|
|
246816
|
-
open_id?: string;
|
|
246817
|
-
};
|
|
246818
|
-
id?: string;
|
|
246819
|
-
}) => Promise<any> | any;
|
|
246820
|
-
/**
|
|
246821
|
-
|
|
246822
|
-
*/
|
|
246823
|
-
"moments.dislike.deleted_v1"?: (data: {
|
|
246824
|
-
event_id?: string;
|
|
246825
|
-
token?: string;
|
|
246826
|
-
create_time?: string;
|
|
246827
|
-
event_type?: string;
|
|
246828
|
-
tenant_key?: string;
|
|
246829
|
-
ts?: string;
|
|
246830
|
-
uuid?: string;
|
|
246831
|
-
type?: string;
|
|
246832
|
-
app_id?: string;
|
|
246833
|
-
entity_type?: number;
|
|
246834
|
-
entity_id?: string;
|
|
246835
|
-
user_id?: {
|
|
246836
|
-
union_id?: string;
|
|
246837
|
-
user_id?: string;
|
|
246838
|
-
open_id?: string;
|
|
246839
|
-
};
|
|
246840
|
-
id?: string;
|
|
246841
|
-
}) => Promise<any> | any;
|
|
246842
247567
|
/**
|
|
246843
247568
|
|
|
246844
247569
|
*/
|