@larksuiteoapi/node-sdk 1.43.0-alpha.0 → 1.43.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 +254 -12
- package/lib/index.js +254 -12
- package/package.json +1 -1
- package/types/index.d.ts +500 -78
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
|
*/
|
|
@@ -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_cfg?: {
|
|
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;
|
|
@@ -10154,6 +10315,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10154
10315
|
face_live_need_action?: boolean | undefined;
|
|
10155
10316
|
face_downgrade?: boolean | undefined;
|
|
10156
10317
|
replace_basic_pic?: boolean | undefined;
|
|
10318
|
+
anti_cheat_punch_cfg?: {
|
|
10319
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
10320
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
10321
|
+
check_buddy_punch?: boolean | undefined;
|
|
10322
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
10323
|
+
check_change_device_punch?: boolean | undefined;
|
|
10324
|
+
allow_change_device_num?: number | undefined;
|
|
10325
|
+
suspected_cheat_handle_method: number;
|
|
10326
|
+
} | undefined;
|
|
10157
10327
|
machines?: {
|
|
10158
10328
|
machine_sn: string;
|
|
10159
10329
|
machine_name: string;
|
|
@@ -10344,6 +10514,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
10344
10514
|
face_live_need_action?: boolean | undefined;
|
|
10345
10515
|
face_downgrade?: boolean | undefined;
|
|
10346
10516
|
replace_basic_pic?: boolean | undefined;
|
|
10517
|
+
anti_cheat_punch_cfg?: {
|
|
10518
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
10519
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
10520
|
+
check_buddy_punch?: boolean | undefined;
|
|
10521
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
10522
|
+
check_change_device_punch?: boolean | undefined;
|
|
10523
|
+
allow_change_device_num?: number | undefined;
|
|
10524
|
+
suspected_cheat_handle_method: number;
|
|
10525
|
+
} | undefined;
|
|
10347
10526
|
machines?: {
|
|
10348
10527
|
machine_sn: string;
|
|
10349
10528
|
machine_name: string;
|
|
@@ -11608,6 +11787,25 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
11608
11787
|
}[] | undefined;
|
|
11609
11788
|
} | undefined;
|
|
11610
11789
|
}>;
|
|
11790
|
+
/**
|
|
11791
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
11792
|
+
*
|
|
11793
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
11794
|
+
*
|
|
11795
|
+
* 批量删除流水
|
|
11796
|
+
*/
|
|
11797
|
+
batchDel: (payload?: {
|
|
11798
|
+
data: {
|
|
11799
|
+
record_ids: Array<string>;
|
|
11800
|
+
};
|
|
11801
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
11802
|
+
code?: number | undefined;
|
|
11803
|
+
msg?: string | undefined;
|
|
11804
|
+
data?: {
|
|
11805
|
+
success_record_ids?: string[] | undefined;
|
|
11806
|
+
fail_record_ids?: string[] | undefined;
|
|
11807
|
+
} | undefined;
|
|
11808
|
+
}>;
|
|
11611
11809
|
/**
|
|
11612
11810
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
11613
11811
|
*
|
|
@@ -12441,6 +12639,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12441
12639
|
face_live_need_action?: boolean;
|
|
12442
12640
|
face_downgrade?: boolean;
|
|
12443
12641
|
replace_basic_pic?: boolean;
|
|
12642
|
+
anti_cheat_punch_cfg?: {
|
|
12643
|
+
intercept_suspected_cheat_punch?: boolean;
|
|
12644
|
+
check_cheat_software_punch?: boolean;
|
|
12645
|
+
check_buddy_punch?: boolean;
|
|
12646
|
+
check_simulate_wifi_punch?: boolean;
|
|
12647
|
+
check_change_device_punch?: boolean;
|
|
12648
|
+
allow_change_device_num?: number;
|
|
12649
|
+
suspected_cheat_handle_method: number;
|
|
12650
|
+
};
|
|
12444
12651
|
machines?: Array<{
|
|
12445
12652
|
machine_sn: string;
|
|
12446
12653
|
machine_name: string;
|
|
@@ -12597,6 +12804,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12597
12804
|
face_live_need_action?: boolean | undefined;
|
|
12598
12805
|
face_downgrade?: boolean | undefined;
|
|
12599
12806
|
replace_basic_pic?: boolean | undefined;
|
|
12807
|
+
anti_cheat_punch_cfg?: {
|
|
12808
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
12809
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
12810
|
+
check_buddy_punch?: boolean | undefined;
|
|
12811
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
12812
|
+
check_change_device_punch?: boolean | undefined;
|
|
12813
|
+
allow_change_device_num?: number | undefined;
|
|
12814
|
+
suspected_cheat_handle_method: number;
|
|
12815
|
+
} | undefined;
|
|
12600
12816
|
machines?: {
|
|
12601
12817
|
machine_sn: string;
|
|
12602
12818
|
machine_name: string;
|
|
@@ -12787,6 +13003,15 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
12787
13003
|
face_live_need_action?: boolean | undefined;
|
|
12788
13004
|
face_downgrade?: boolean | undefined;
|
|
12789
13005
|
replace_basic_pic?: boolean | undefined;
|
|
13006
|
+
anti_cheat_punch_cfg?: {
|
|
13007
|
+
intercept_suspected_cheat_punch?: boolean | undefined;
|
|
13008
|
+
check_cheat_software_punch?: boolean | undefined;
|
|
13009
|
+
check_buddy_punch?: boolean | undefined;
|
|
13010
|
+
check_simulate_wifi_punch?: boolean | undefined;
|
|
13011
|
+
check_change_device_punch?: boolean | undefined;
|
|
13012
|
+
allow_change_device_num?: number | undefined;
|
|
13013
|
+
suspected_cheat_handle_method: number;
|
|
13014
|
+
} | undefined;
|
|
12790
13015
|
machines?: {
|
|
12791
13016
|
machine_sn: string;
|
|
12792
13017
|
machine_name: string;
|
|
@@ -14051,6 +14276,25 @@ declare abstract class Client$Y extends Client$Z {
|
|
|
14051
14276
|
}[] | undefined;
|
|
14052
14277
|
} | undefined;
|
|
14053
14278
|
}>;
|
|
14279
|
+
/**
|
|
14280
|
+
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=batch_del&version=v1 click to debug }
|
|
14281
|
+
*
|
|
14282
|
+
* {@link https://open.feishu.cn/api-explorer?from=op_doc_tab&apiName=batch_del&project=attendance&resource=user_flow&version=v1 document }
|
|
14283
|
+
*
|
|
14284
|
+
* 批量删除流水
|
|
14285
|
+
*/
|
|
14286
|
+
batchDel: (payload?: {
|
|
14287
|
+
data: {
|
|
14288
|
+
record_ids: Array<string>;
|
|
14289
|
+
};
|
|
14290
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
14291
|
+
code?: number | undefined;
|
|
14292
|
+
msg?: string | undefined;
|
|
14293
|
+
data?: {
|
|
14294
|
+
success_record_ids?: string[] | undefined;
|
|
14295
|
+
fail_record_ids?: string[] | undefined;
|
|
14296
|
+
} | undefined;
|
|
14297
|
+
}>;
|
|
14054
14298
|
/**
|
|
14055
14299
|
* {@link https://open.feishu.cn/api-explorer?project=attendance&resource=user_flow&apiName=get&version=v1 click to debug }
|
|
14056
14300
|
*
|
|
@@ -28298,6 +28542,8 @@ declare abstract class Client$N extends Client$O {
|
|
|
28298
28542
|
effective_date: string;
|
|
28299
28543
|
expiration_date?: string;
|
|
28300
28544
|
salary_level_id?: string;
|
|
28545
|
+
created_time?: string;
|
|
28546
|
+
updated_time?: string;
|
|
28301
28547
|
archive_items: Array<{
|
|
28302
28548
|
item_id: string;
|
|
28303
28549
|
item_result: string;
|
|
@@ -39117,6 +39363,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
39117
39363
|
};
|
|
39118
39364
|
person_id?: string;
|
|
39119
39365
|
primary_employment?: boolean;
|
|
39366
|
+
condition_worker?: boolean;
|
|
39120
39367
|
custom_fields?: Array<{
|
|
39121
39368
|
field_name: string;
|
|
39122
39369
|
value: string;
|
|
@@ -39178,6 +39425,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
39178
39425
|
on_probation?: string | undefined;
|
|
39179
39426
|
probation_end_date?: string | undefined;
|
|
39180
39427
|
primary_employment: boolean;
|
|
39428
|
+
condition_worker?: boolean | undefined;
|
|
39181
39429
|
employment_status?: {
|
|
39182
39430
|
enum_name: string;
|
|
39183
39431
|
display?: {
|
|
@@ -48489,6 +48737,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
48489
48737
|
};
|
|
48490
48738
|
person_id?: string;
|
|
48491
48739
|
primary_employment?: boolean;
|
|
48740
|
+
condition_worker?: boolean;
|
|
48492
48741
|
custom_fields?: Array<{
|
|
48493
48742
|
field_name: string;
|
|
48494
48743
|
value: string;
|
|
@@ -48550,6 +48799,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
48550
48799
|
on_probation?: string | undefined;
|
|
48551
48800
|
probation_end_date?: string | undefined;
|
|
48552
48801
|
primary_employment: boolean;
|
|
48802
|
+
condition_worker?: boolean | undefined;
|
|
48553
48803
|
employment_status?: {
|
|
48554
48804
|
enum_name: string;
|
|
48555
48805
|
display?: {
|
|
@@ -55028,6 +55278,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
55028
55278
|
}[] | undefined;
|
|
55029
55279
|
original_cost_center?: {
|
|
55030
55280
|
cost_center_id?: string | undefined;
|
|
55281
|
+
cost_center_version_id?: string | undefined;
|
|
55031
55282
|
name: Array<{
|
|
55032
55283
|
lang: string;
|
|
55033
55284
|
value: string;
|
|
@@ -55046,6 +55297,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
55046
55297
|
} | undefined;
|
|
55047
55298
|
target_cost_center?: {
|
|
55048
55299
|
cost_center_id?: string | undefined;
|
|
55300
|
+
cost_center_version_id?: string | undefined;
|
|
55049
55301
|
name: Array<{
|
|
55050
55302
|
lang: string;
|
|
55051
55303
|
value: string;
|
|
@@ -56396,6 +56648,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
56396
56648
|
*/
|
|
56397
56649
|
create: (payload?: {
|
|
56398
56650
|
data: {
|
|
56651
|
+
cost_center_version_id?: string;
|
|
56399
56652
|
name: Array<{
|
|
56400
56653
|
lang: string;
|
|
56401
56654
|
value: string;
|
|
@@ -56418,6 +56671,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
56418
56671
|
data?: {
|
|
56419
56672
|
cost_center?: {
|
|
56420
56673
|
cost_center_id?: string | undefined;
|
|
56674
|
+
cost_center_version_id?: string | undefined;
|
|
56421
56675
|
name: Array<{
|
|
56422
56676
|
lang: string;
|
|
56423
56677
|
value: string;
|
|
@@ -56477,6 +56731,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
56477
56731
|
data?: {
|
|
56478
56732
|
cost_center?: {
|
|
56479
56733
|
cost_center_id?: string | undefined;
|
|
56734
|
+
cost_center_version_id?: string | undefined;
|
|
56480
56735
|
name: Array<{
|
|
56481
56736
|
lang: string;
|
|
56482
56737
|
value: string;
|
|
@@ -57363,6 +57618,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
57363
57618
|
value: string;
|
|
57364
57619
|
}[] | undefined;
|
|
57365
57620
|
} | undefined;
|
|
57621
|
+
pathway_id?: string | undefined;
|
|
57622
|
+
pathway?: {
|
|
57623
|
+
id?: string | undefined;
|
|
57624
|
+
code?: string | undefined;
|
|
57625
|
+
name: Array<{
|
|
57626
|
+
lang: string;
|
|
57627
|
+
value: string;
|
|
57628
|
+
}>;
|
|
57629
|
+
description?: {
|
|
57630
|
+
lang: string;
|
|
57631
|
+
value: string;
|
|
57632
|
+
}[] | undefined;
|
|
57633
|
+
active: boolean;
|
|
57634
|
+
custom_fields?: {
|
|
57635
|
+
custom_api_name: string;
|
|
57636
|
+
name?: {
|
|
57637
|
+
zh_cn?: string | undefined;
|
|
57638
|
+
en_us?: string | undefined;
|
|
57639
|
+
} | undefined;
|
|
57640
|
+
type?: number | undefined;
|
|
57641
|
+
value: string;
|
|
57642
|
+
}[] | undefined;
|
|
57643
|
+
} | undefined;
|
|
57366
57644
|
job_grade_id?: string | undefined;
|
|
57367
57645
|
work_location_id?: string | undefined;
|
|
57368
57646
|
job_family_id?: string | undefined;
|
|
@@ -59056,6 +59334,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
59056
59334
|
value: string;
|
|
59057
59335
|
}[] | undefined;
|
|
59058
59336
|
} | undefined;
|
|
59337
|
+
pathway_id?: string | undefined;
|
|
59338
|
+
pathway?: {
|
|
59339
|
+
id?: string | undefined;
|
|
59340
|
+
code?: string | undefined;
|
|
59341
|
+
name: Array<{
|
|
59342
|
+
lang: string;
|
|
59343
|
+
value: string;
|
|
59344
|
+
}>;
|
|
59345
|
+
description?: {
|
|
59346
|
+
lang: string;
|
|
59347
|
+
value: string;
|
|
59348
|
+
}[] | undefined;
|
|
59349
|
+
active: boolean;
|
|
59350
|
+
custom_fields?: {
|
|
59351
|
+
custom_api_name: string;
|
|
59352
|
+
name?: {
|
|
59353
|
+
zh_cn?: string | undefined;
|
|
59354
|
+
en_us?: string | undefined;
|
|
59355
|
+
} | undefined;
|
|
59356
|
+
type?: number | undefined;
|
|
59357
|
+
value: string;
|
|
59358
|
+
}[] | undefined;
|
|
59359
|
+
} | undefined;
|
|
59059
59360
|
job_grade_id?: string | undefined;
|
|
59060
59361
|
work_location_id?: string | undefined;
|
|
59061
59362
|
job_family_id?: string | undefined;
|
|
@@ -60320,6 +60621,29 @@ declare abstract class Client$J extends Client$K {
|
|
|
60320
60621
|
value: string;
|
|
60321
60622
|
}[] | undefined;
|
|
60322
60623
|
} | undefined;
|
|
60624
|
+
pathway_id?: string | undefined;
|
|
60625
|
+
pathway?: {
|
|
60626
|
+
id?: string | undefined;
|
|
60627
|
+
code?: string | undefined;
|
|
60628
|
+
name: Array<{
|
|
60629
|
+
lang: string;
|
|
60630
|
+
value: string;
|
|
60631
|
+
}>;
|
|
60632
|
+
description?: {
|
|
60633
|
+
lang: string;
|
|
60634
|
+
value: string;
|
|
60635
|
+
}[] | undefined;
|
|
60636
|
+
active: boolean;
|
|
60637
|
+
custom_fields?: {
|
|
60638
|
+
custom_api_name: string;
|
|
60639
|
+
name?: {
|
|
60640
|
+
zh_cn?: string | undefined;
|
|
60641
|
+
en_us?: string | undefined;
|
|
60642
|
+
} | undefined;
|
|
60643
|
+
type?: number | undefined;
|
|
60644
|
+
value: string;
|
|
60645
|
+
}[] | undefined;
|
|
60646
|
+
} | undefined;
|
|
60323
60647
|
job_grade_id?: string | undefined;
|
|
60324
60648
|
work_location_id?: string | undefined;
|
|
60325
60649
|
job_family_id?: string | undefined;
|
|
@@ -61947,6 +62271,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
61947
62271
|
value: string;
|
|
61948
62272
|
}[] | undefined;
|
|
61949
62273
|
} | undefined;
|
|
62274
|
+
pathway_id?: string | undefined;
|
|
61950
62275
|
}[] | undefined;
|
|
61951
62276
|
}[] | undefined;
|
|
61952
62277
|
} | undefined;
|
|
@@ -62062,6 +62387,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
62062
62387
|
value: string;
|
|
62063
62388
|
}[] | undefined;
|
|
62064
62389
|
} | undefined;
|
|
62390
|
+
pathway_id?: string | undefined;
|
|
62065
62391
|
}[] | undefined;
|
|
62066
62392
|
}[] | undefined;
|
|
62067
62393
|
page_token?: string | undefined;
|
|
@@ -62421,7 +62747,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
62421
62747
|
}, options?: IRequestOptions$1) => Promise<{
|
|
62422
62748
|
code?: number | undefined;
|
|
62423
62749
|
msg?: string | undefined;
|
|
62424
|
-
data?: {
|
|
62750
|
+
data?: {
|
|
62751
|
+
result?: boolean | undefined;
|
|
62752
|
+
message?: string | undefined;
|
|
62753
|
+
} | undefined;
|
|
62425
62754
|
}>;
|
|
62426
62755
|
searchWithIterator: (payload?: {
|
|
62427
62756
|
data?: {
|
|
@@ -62433,6 +62762,9 @@ declare abstract class Client$J extends Client$K {
|
|
|
62433
62762
|
updated_time_start?: string;
|
|
62434
62763
|
updated_time_end?: string;
|
|
62435
62764
|
target_department_ids?: Array<string>;
|
|
62765
|
+
transfer_type_unique_identifier?: Array<string>;
|
|
62766
|
+
transfer_reason_unique_identifier?: Array<string>;
|
|
62767
|
+
exception_statuses?: Array<"pending" | "processed">;
|
|
62436
62768
|
};
|
|
62437
62769
|
params: {
|
|
62438
62770
|
page_size: number;
|
|
@@ -62587,6 +62919,9 @@ declare abstract class Client$J extends Client$K {
|
|
|
62587
62919
|
updated_time_start?: string;
|
|
62588
62920
|
updated_time_end?: string;
|
|
62589
62921
|
target_department_ids?: Array<string>;
|
|
62922
|
+
transfer_type_unique_identifier?: Array<string>;
|
|
62923
|
+
transfer_reason_unique_identifier?: Array<string>;
|
|
62924
|
+
exception_statuses?: Array<"pending" | "processed">;
|
|
62590
62925
|
};
|
|
62591
62926
|
params: {
|
|
62592
62927
|
page_size: number;
|
|
@@ -62759,6 +63094,10 @@ declare abstract class Client$J extends Client$K {
|
|
|
62759
63094
|
effective_time: string;
|
|
62760
63095
|
expiration_time?: string | undefined;
|
|
62761
63096
|
code?: string | undefined;
|
|
63097
|
+
description: Array<{
|
|
63098
|
+
lang: string;
|
|
63099
|
+
value: string;
|
|
63100
|
+
}>;
|
|
62762
63101
|
custom_fields?: {
|
|
62763
63102
|
custom_api_name: string;
|
|
62764
63103
|
name?: {
|
|
@@ -68897,6 +69236,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
68897
69236
|
employee_subtype_ids?: Array<string>;
|
|
68898
69237
|
job_family_ids?: Array<string>;
|
|
68899
69238
|
key_word?: string;
|
|
69239
|
+
condition_worker?: boolean;
|
|
68900
69240
|
rehire?: "to_be_confirmed" | "no" | "yes";
|
|
68901
69241
|
fields?: Array<string>;
|
|
68902
69242
|
};
|
|
@@ -70075,6 +70415,7 @@ declare abstract class Client$J extends Client$K {
|
|
|
70075
70415
|
employee_subtype_ids?: Array<string>;
|
|
70076
70416
|
job_family_ids?: Array<string>;
|
|
70077
70417
|
key_word?: string;
|
|
70418
|
+
condition_worker?: boolean;
|
|
70078
70419
|
rehire?: "to_be_confirmed" | "no" | "yes";
|
|
70079
70420
|
fields?: Array<string>;
|
|
70080
70421
|
};
|
|
@@ -72796,7 +73137,7 @@ declare abstract class Client$G extends Client$H {
|
|
|
72796
73137
|
}, options?: IRequestOptions$1) => Promise<{
|
|
72797
73138
|
food_manage_license?: {
|
|
72798
73139
|
entities?: {
|
|
72799
|
-
type?: "domicile" | "legal_representative" | "validity_period" | "issuer" | "issuing_authority" | "complaints_hotline" | "license_number" | "credit_code" | "
|
|
73140
|
+
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
73141
|
value?: string | undefined;
|
|
72801
73142
|
}[] | undefined;
|
|
72802
73143
|
} | undefined;
|
|
@@ -174758,7 +175099,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
174758
175099
|
httpInstance: HttpInstance;
|
|
174759
175100
|
abstract formatPayload(payload?: IPayload, options?: IRequestOptions$1): Promise<Required<IPayload>>;
|
|
174760
175101
|
/**
|
|
174761
|
-
*
|
|
175102
|
+
* 云文档-文件管理
|
|
174762
175103
|
*/
|
|
174763
175104
|
drive: {
|
|
174764
175105
|
/**
|
|
@@ -175325,7 +175666,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
175325
175666
|
}>;
|
|
175326
175667
|
};
|
|
175327
175668
|
/**
|
|
175328
|
-
*
|
|
175669
|
+
* 分片上传
|
|
175329
175670
|
*/
|
|
175330
175671
|
file: {
|
|
175331
175672
|
/**
|
|
@@ -176163,7 +176504,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
176163
176504
|
}>;
|
|
176164
176505
|
};
|
|
176165
176506
|
/**
|
|
176166
|
-
*
|
|
176507
|
+
* 分片上传
|
|
176167
176508
|
*/
|
|
176168
176509
|
media: {
|
|
176169
176510
|
/**
|
|
@@ -177284,7 +177625,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
177284
177625
|
}>;
|
|
177285
177626
|
};
|
|
177286
177627
|
/**
|
|
177287
|
-
*
|
|
177628
|
+
* 分片上传
|
|
177288
177629
|
*/
|
|
177289
177630
|
file: {
|
|
177290
177631
|
/**
|
|
@@ -178122,7 +178463,7 @@ declare abstract class Client$E extends Client$F {
|
|
|
178122
178463
|
}>;
|
|
178123
178464
|
};
|
|
178124
178465
|
/**
|
|
178125
|
-
*
|
|
178466
|
+
* 分片上传
|
|
178126
178467
|
*/
|
|
178127
178468
|
media: {
|
|
178128
178469
|
/**
|
|
@@ -184270,9 +184611,32 @@ declare abstract class Client$u extends Client$v {
|
|
|
184270
184611
|
}>;
|
|
184271
184612
|
};
|
|
184272
184613
|
/**
|
|
184273
|
-
*
|
|
184614
|
+
* 入职
|
|
184274
184615
|
*/
|
|
184275
184616
|
application: {
|
|
184617
|
+
/**
|
|
184618
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
184619
|
+
*
|
|
184620
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
184621
|
+
*
|
|
184622
|
+
* 取消候选人入职
|
|
184623
|
+
*
|
|
184624
|
+
* 操作候选人取消入职
|
|
184625
|
+
*/
|
|
184626
|
+
cancelOnboard: (payload?: {
|
|
184627
|
+
data: {
|
|
184628
|
+
termination_type: number;
|
|
184629
|
+
termination_reason_id_list?: Array<string>;
|
|
184630
|
+
termination_reason_notes?: string;
|
|
184631
|
+
};
|
|
184632
|
+
path: {
|
|
184633
|
+
application_id: string;
|
|
184634
|
+
};
|
|
184635
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
184636
|
+
code?: number | undefined;
|
|
184637
|
+
msg?: string | undefined;
|
|
184638
|
+
data?: {} | undefined;
|
|
184639
|
+
}>;
|
|
184276
184640
|
/**
|
|
184277
184641
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
184278
184642
|
*
|
|
@@ -185114,6 +185478,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
185114
185478
|
} | undefined;
|
|
185115
185479
|
position_id?: string | undefined;
|
|
185116
185480
|
job_offered?: string | undefined;
|
|
185481
|
+
job_grade_id?: string | undefined;
|
|
185117
185482
|
} | undefined;
|
|
185118
185483
|
salary_plan?: {
|
|
185119
185484
|
currency?: string | undefined;
|
|
@@ -192138,6 +192503,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192138
192503
|
operator_user_id: string;
|
|
192139
192504
|
position_id?: string;
|
|
192140
192505
|
job_offered?: string;
|
|
192506
|
+
job_grade_id?: string;
|
|
192141
192507
|
};
|
|
192142
192508
|
salary_info?: {
|
|
192143
192509
|
currency: string;
|
|
@@ -192193,6 +192559,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192193
192559
|
operator_user_id: string;
|
|
192194
192560
|
position_id?: string | undefined;
|
|
192195
192561
|
job_offered?: string | undefined;
|
|
192562
|
+
job_grade_id?: string | undefined;
|
|
192196
192563
|
} | undefined;
|
|
192197
192564
|
salary_info?: {
|
|
192198
192565
|
currency: string;
|
|
@@ -192348,6 +192715,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192348
192715
|
} | undefined;
|
|
192349
192716
|
position_id?: string | undefined;
|
|
192350
192717
|
job_offered?: string | undefined;
|
|
192718
|
+
job_grade_id?: string | undefined;
|
|
192351
192719
|
} | undefined;
|
|
192352
192720
|
salary_plan?: {
|
|
192353
192721
|
currency?: string | undefined;
|
|
@@ -192553,6 +192921,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192553
192921
|
operator_user_id: string;
|
|
192554
192922
|
position_id?: string;
|
|
192555
192923
|
job_offered?: string;
|
|
192924
|
+
job_grade_id?: string;
|
|
192556
192925
|
};
|
|
192557
192926
|
salary_info?: {
|
|
192558
192927
|
currency: string;
|
|
@@ -192609,6 +192978,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
192609
192978
|
operator_user_id: string;
|
|
192610
192979
|
position_id?: string | undefined;
|
|
192611
192980
|
job_offered?: string | undefined;
|
|
192981
|
+
job_grade_id?: string | undefined;
|
|
192612
192982
|
} | undefined;
|
|
192613
192983
|
salary_info?: {
|
|
192614
192984
|
currency: string;
|
|
@@ -193229,7 +193599,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
193229
193599
|
check_failed_list?: {
|
|
193230
193600
|
account_id?: string | undefined;
|
|
193231
193601
|
total_withdraw_reward_info?: {
|
|
193232
|
-
bonus_type?: number | undefined;
|
|
193233
193602
|
point_bonus?: number | undefined;
|
|
193234
193603
|
cash?: {
|
|
193235
193604
|
currency_type: string;
|
|
@@ -193241,7 +193610,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
193241
193610
|
}[] | undefined;
|
|
193242
193611
|
} | undefined;
|
|
193243
193612
|
total_recharge_reward_info?: {
|
|
193244
|
-
bonus_type?: number | undefined;
|
|
193245
193613
|
point_bonus?: number | undefined;
|
|
193246
193614
|
cash?: {
|
|
193247
193615
|
currency_type: string;
|
|
@@ -194422,6 +194790,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194422
194790
|
hometown_city_code?: string;
|
|
194423
194791
|
customized_data?: Array<{
|
|
194424
194792
|
object_id?: string;
|
|
194793
|
+
value?: string;
|
|
194425
194794
|
children?: Array<{
|
|
194426
194795
|
object_id?: string;
|
|
194427
194796
|
value?: string;
|
|
@@ -194439,6 +194808,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194439
194808
|
academic_ranking?: number;
|
|
194440
194809
|
customized_data?: Array<{
|
|
194441
194810
|
object_id?: string;
|
|
194811
|
+
value?: string;
|
|
194442
194812
|
children?: Array<{
|
|
194443
194813
|
object_id?: string;
|
|
194444
194814
|
value?: string;
|
|
@@ -194455,6 +194825,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194455
194825
|
career_type?: number;
|
|
194456
194826
|
customized_data?: Array<{
|
|
194457
194827
|
object_id?: string;
|
|
194828
|
+
value?: string;
|
|
194458
194829
|
children?: Array<{
|
|
194459
194830
|
object_id?: string;
|
|
194460
194831
|
value?: string;
|
|
@@ -194471,6 +194842,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194471
194842
|
end_time?: string;
|
|
194472
194843
|
customized_data?: Array<{
|
|
194473
194844
|
object_id?: string;
|
|
194845
|
+
value?: string;
|
|
194474
194846
|
children?: Array<{
|
|
194475
194847
|
object_id?: string;
|
|
194476
194848
|
value?: string;
|
|
@@ -194484,6 +194856,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194484
194856
|
attachment_id?: string;
|
|
194485
194857
|
customized_data?: Array<{
|
|
194486
194858
|
object_id?: string;
|
|
194859
|
+
value?: string;
|
|
194487
194860
|
children?: Array<{
|
|
194488
194861
|
object_id?: string;
|
|
194489
194862
|
value?: string;
|
|
@@ -194497,6 +194870,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194497
194870
|
desc?: string;
|
|
194498
194871
|
customized_data?: Array<{
|
|
194499
194872
|
object_id?: string;
|
|
194873
|
+
value?: string;
|
|
194500
194874
|
children?: Array<{
|
|
194501
194875
|
object_id?: string;
|
|
194502
194876
|
value?: string;
|
|
@@ -194509,6 +194883,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194509
194883
|
proficiency?: number;
|
|
194510
194884
|
customized_data?: Array<{
|
|
194511
194885
|
object_id?: string;
|
|
194886
|
+
value?: string;
|
|
194512
194887
|
children?: Array<{
|
|
194513
194888
|
object_id?: string;
|
|
194514
194889
|
value?: string;
|
|
@@ -194521,6 +194896,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194521
194896
|
link?: string;
|
|
194522
194897
|
customized_data?: Array<{
|
|
194523
194898
|
object_id?: string;
|
|
194899
|
+
value?: string;
|
|
194524
194900
|
children?: Array<{
|
|
194525
194901
|
object_id?: string;
|
|
194526
194902
|
value?: string;
|
|
@@ -194533,6 +194909,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194533
194909
|
content?: string;
|
|
194534
194910
|
customized_data?: Array<{
|
|
194535
194911
|
object_id?: string;
|
|
194912
|
+
value?: string;
|
|
194536
194913
|
children?: Array<{
|
|
194537
194914
|
object_id?: string;
|
|
194538
194915
|
value?: string;
|
|
@@ -194541,6 +194918,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194541
194918
|
};
|
|
194542
194919
|
customized_data?: Array<{
|
|
194543
194920
|
object_id?: string;
|
|
194921
|
+
value?: string;
|
|
194544
194922
|
children?: Array<{
|
|
194545
194923
|
object_id?: string;
|
|
194546
194924
|
value?: string;
|
|
@@ -194593,6 +194971,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194593
194971
|
hometown_city_code?: string;
|
|
194594
194972
|
customized_data?: Array<{
|
|
194595
194973
|
object_id?: string;
|
|
194974
|
+
value?: string;
|
|
194596
194975
|
children?: Array<{
|
|
194597
194976
|
object_id?: string;
|
|
194598
194977
|
value?: string;
|
|
@@ -194610,6 +194989,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194610
194989
|
academic_ranking?: number;
|
|
194611
194990
|
customized_data?: Array<{
|
|
194612
194991
|
object_id?: string;
|
|
194992
|
+
value?: string;
|
|
194613
194993
|
children?: Array<{
|
|
194614
194994
|
object_id?: string;
|
|
194615
194995
|
value?: string;
|
|
@@ -194626,6 +195006,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194626
195006
|
career_type?: number;
|
|
194627
195007
|
customized_data?: Array<{
|
|
194628
195008
|
object_id?: string;
|
|
195009
|
+
value?: string;
|
|
194629
195010
|
children?: Array<{
|
|
194630
195011
|
object_id?: string;
|
|
194631
195012
|
value?: string;
|
|
@@ -194642,6 +195023,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194642
195023
|
end_time?: string;
|
|
194643
195024
|
customized_data?: Array<{
|
|
194644
195025
|
object_id?: string;
|
|
195026
|
+
value?: string;
|
|
194645
195027
|
children?: Array<{
|
|
194646
195028
|
object_id?: string;
|
|
194647
195029
|
value?: string;
|
|
@@ -194655,6 +195037,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194655
195037
|
attachment_id?: string;
|
|
194656
195038
|
customized_data?: Array<{
|
|
194657
195039
|
object_id?: string;
|
|
195040
|
+
value?: string;
|
|
194658
195041
|
children?: Array<{
|
|
194659
195042
|
object_id?: string;
|
|
194660
195043
|
value?: string;
|
|
@@ -194668,6 +195051,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194668
195051
|
desc?: string;
|
|
194669
195052
|
customized_data?: Array<{
|
|
194670
195053
|
object_id?: string;
|
|
195054
|
+
value?: string;
|
|
194671
195055
|
children?: Array<{
|
|
194672
195056
|
object_id?: string;
|
|
194673
195057
|
value?: string;
|
|
@@ -194680,6 +195064,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194680
195064
|
proficiency?: number;
|
|
194681
195065
|
customized_data?: Array<{
|
|
194682
195066
|
object_id?: string;
|
|
195067
|
+
value?: string;
|
|
194683
195068
|
children?: Array<{
|
|
194684
195069
|
object_id?: string;
|
|
194685
195070
|
value?: string;
|
|
@@ -194692,6 +195077,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194692
195077
|
link?: string;
|
|
194693
195078
|
customized_data?: Array<{
|
|
194694
195079
|
object_id?: string;
|
|
195080
|
+
value?: string;
|
|
194695
195081
|
children?: Array<{
|
|
194696
195082
|
object_id?: string;
|
|
194697
195083
|
value?: string;
|
|
@@ -194704,6 +195090,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194704
195090
|
content?: string;
|
|
194705
195091
|
customized_data?: Array<{
|
|
194706
195092
|
object_id?: string;
|
|
195093
|
+
value?: string;
|
|
194707
195094
|
children?: Array<{
|
|
194708
195095
|
object_id?: string;
|
|
194709
195096
|
value?: string;
|
|
@@ -194712,6 +195099,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
194712
195099
|
};
|
|
194713
195100
|
customized_data?: Array<{
|
|
194714
195101
|
object_id?: string;
|
|
195102
|
+
value?: string;
|
|
194715
195103
|
children?: Array<{
|
|
194716
195104
|
object_id?: string;
|
|
194717
195105
|
value?: string;
|
|
@@ -198143,9 +198531,32 @@ declare abstract class Client$u extends Client$v {
|
|
|
198143
198531
|
}>;
|
|
198144
198532
|
};
|
|
198145
198533
|
/**
|
|
198146
|
-
*
|
|
198534
|
+
* 入职
|
|
198147
198535
|
*/
|
|
198148
198536
|
application: {
|
|
198537
|
+
/**
|
|
198538
|
+
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=cancel_onboard&version=v1 click to debug }
|
|
198539
|
+
*
|
|
198540
|
+
* {@link https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/application/cancel_onboard document }
|
|
198541
|
+
*
|
|
198542
|
+
* 取消候选人入职
|
|
198543
|
+
*
|
|
198544
|
+
* 操作候选人取消入职
|
|
198545
|
+
*/
|
|
198546
|
+
cancelOnboard: (payload?: {
|
|
198547
|
+
data: {
|
|
198548
|
+
termination_type: number;
|
|
198549
|
+
termination_reason_id_list?: Array<string>;
|
|
198550
|
+
termination_reason_notes?: string;
|
|
198551
|
+
};
|
|
198552
|
+
path: {
|
|
198553
|
+
application_id: string;
|
|
198554
|
+
};
|
|
198555
|
+
}, options?: IRequestOptions$1) => Promise<{
|
|
198556
|
+
code?: number | undefined;
|
|
198557
|
+
msg?: string | undefined;
|
|
198558
|
+
data?: {} | undefined;
|
|
198559
|
+
}>;
|
|
198149
198560
|
/**
|
|
198150
198561
|
* {@link https://open.feishu.cn/api-explorer?project=hire&resource=application&apiName=create&version=v1 click to debug }
|
|
198151
198562
|
*
|
|
@@ -198987,6 +199398,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
198987
199398
|
} | undefined;
|
|
198988
199399
|
position_id?: string | undefined;
|
|
198989
199400
|
job_offered?: string | undefined;
|
|
199401
|
+
job_grade_id?: string | undefined;
|
|
198990
199402
|
} | undefined;
|
|
198991
199403
|
salary_plan?: {
|
|
198992
199404
|
currency?: string | undefined;
|
|
@@ -206011,6 +206423,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206011
206423
|
operator_user_id: string;
|
|
206012
206424
|
position_id?: string;
|
|
206013
206425
|
job_offered?: string;
|
|
206426
|
+
job_grade_id?: string;
|
|
206014
206427
|
};
|
|
206015
206428
|
salary_info?: {
|
|
206016
206429
|
currency: string;
|
|
@@ -206066,6 +206479,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206066
206479
|
operator_user_id: string;
|
|
206067
206480
|
position_id?: string | undefined;
|
|
206068
206481
|
job_offered?: string | undefined;
|
|
206482
|
+
job_grade_id?: string | undefined;
|
|
206069
206483
|
} | undefined;
|
|
206070
206484
|
salary_info?: {
|
|
206071
206485
|
currency: string;
|
|
@@ -206221,6 +206635,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206221
206635
|
} | undefined;
|
|
206222
206636
|
position_id?: string | undefined;
|
|
206223
206637
|
job_offered?: string | undefined;
|
|
206638
|
+
job_grade_id?: string | undefined;
|
|
206224
206639
|
} | undefined;
|
|
206225
206640
|
salary_plan?: {
|
|
206226
206641
|
currency?: string | undefined;
|
|
@@ -206426,6 +206841,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206426
206841
|
operator_user_id: string;
|
|
206427
206842
|
position_id?: string;
|
|
206428
206843
|
job_offered?: string;
|
|
206844
|
+
job_grade_id?: string;
|
|
206429
206845
|
};
|
|
206430
206846
|
salary_info?: {
|
|
206431
206847
|
currency: string;
|
|
@@ -206482,6 +206898,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
206482
206898
|
operator_user_id: string;
|
|
206483
206899
|
position_id?: string | undefined;
|
|
206484
206900
|
job_offered?: string | undefined;
|
|
206901
|
+
job_grade_id?: string | undefined;
|
|
206485
206902
|
} | undefined;
|
|
206486
206903
|
salary_info?: {
|
|
206487
206904
|
currency: string;
|
|
@@ -207102,7 +207519,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
207102
207519
|
check_failed_list?: {
|
|
207103
207520
|
account_id?: string | undefined;
|
|
207104
207521
|
total_withdraw_reward_info?: {
|
|
207105
|
-
bonus_type?: number | undefined;
|
|
207106
207522
|
point_bonus?: number | undefined;
|
|
207107
207523
|
cash?: {
|
|
207108
207524
|
currency_type: string;
|
|
@@ -207114,7 +207530,6 @@ declare abstract class Client$u extends Client$v {
|
|
|
207114
207530
|
}[] | undefined;
|
|
207115
207531
|
} | undefined;
|
|
207116
207532
|
total_recharge_reward_info?: {
|
|
207117
|
-
bonus_type?: number | undefined;
|
|
207118
207533
|
point_bonus?: number | undefined;
|
|
207119
207534
|
cash?: {
|
|
207120
207535
|
currency_type: string;
|
|
@@ -208295,6 +208710,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208295
208710
|
hometown_city_code?: string;
|
|
208296
208711
|
customized_data?: Array<{
|
|
208297
208712
|
object_id?: string;
|
|
208713
|
+
value?: string;
|
|
208298
208714
|
children?: Array<{
|
|
208299
208715
|
object_id?: string;
|
|
208300
208716
|
value?: string;
|
|
@@ -208312,6 +208728,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208312
208728
|
academic_ranking?: number;
|
|
208313
208729
|
customized_data?: Array<{
|
|
208314
208730
|
object_id?: string;
|
|
208731
|
+
value?: string;
|
|
208315
208732
|
children?: Array<{
|
|
208316
208733
|
object_id?: string;
|
|
208317
208734
|
value?: string;
|
|
@@ -208328,6 +208745,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208328
208745
|
career_type?: number;
|
|
208329
208746
|
customized_data?: Array<{
|
|
208330
208747
|
object_id?: string;
|
|
208748
|
+
value?: string;
|
|
208331
208749
|
children?: Array<{
|
|
208332
208750
|
object_id?: string;
|
|
208333
208751
|
value?: string;
|
|
@@ -208344,6 +208762,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208344
208762
|
end_time?: string;
|
|
208345
208763
|
customized_data?: Array<{
|
|
208346
208764
|
object_id?: string;
|
|
208765
|
+
value?: string;
|
|
208347
208766
|
children?: Array<{
|
|
208348
208767
|
object_id?: string;
|
|
208349
208768
|
value?: string;
|
|
@@ -208357,6 +208776,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208357
208776
|
attachment_id?: string;
|
|
208358
208777
|
customized_data?: Array<{
|
|
208359
208778
|
object_id?: string;
|
|
208779
|
+
value?: string;
|
|
208360
208780
|
children?: Array<{
|
|
208361
208781
|
object_id?: string;
|
|
208362
208782
|
value?: string;
|
|
@@ -208370,6 +208790,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208370
208790
|
desc?: string;
|
|
208371
208791
|
customized_data?: Array<{
|
|
208372
208792
|
object_id?: string;
|
|
208793
|
+
value?: string;
|
|
208373
208794
|
children?: Array<{
|
|
208374
208795
|
object_id?: string;
|
|
208375
208796
|
value?: string;
|
|
@@ -208382,6 +208803,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208382
208803
|
proficiency?: number;
|
|
208383
208804
|
customized_data?: Array<{
|
|
208384
208805
|
object_id?: string;
|
|
208806
|
+
value?: string;
|
|
208385
208807
|
children?: Array<{
|
|
208386
208808
|
object_id?: string;
|
|
208387
208809
|
value?: string;
|
|
@@ -208394,6 +208816,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208394
208816
|
link?: string;
|
|
208395
208817
|
customized_data?: Array<{
|
|
208396
208818
|
object_id?: string;
|
|
208819
|
+
value?: string;
|
|
208397
208820
|
children?: Array<{
|
|
208398
208821
|
object_id?: string;
|
|
208399
208822
|
value?: string;
|
|
@@ -208406,6 +208829,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208406
208829
|
content?: string;
|
|
208407
208830
|
customized_data?: Array<{
|
|
208408
208831
|
object_id?: string;
|
|
208832
|
+
value?: string;
|
|
208409
208833
|
children?: Array<{
|
|
208410
208834
|
object_id?: string;
|
|
208411
208835
|
value?: string;
|
|
@@ -208414,6 +208838,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208414
208838
|
};
|
|
208415
208839
|
customized_data?: Array<{
|
|
208416
208840
|
object_id?: string;
|
|
208841
|
+
value?: string;
|
|
208417
208842
|
children?: Array<{
|
|
208418
208843
|
object_id?: string;
|
|
208419
208844
|
value?: string;
|
|
@@ -208466,6 +208891,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208466
208891
|
hometown_city_code?: string;
|
|
208467
208892
|
customized_data?: Array<{
|
|
208468
208893
|
object_id?: string;
|
|
208894
|
+
value?: string;
|
|
208469
208895
|
children?: Array<{
|
|
208470
208896
|
object_id?: string;
|
|
208471
208897
|
value?: string;
|
|
@@ -208483,6 +208909,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208483
208909
|
academic_ranking?: number;
|
|
208484
208910
|
customized_data?: Array<{
|
|
208485
208911
|
object_id?: string;
|
|
208912
|
+
value?: string;
|
|
208486
208913
|
children?: Array<{
|
|
208487
208914
|
object_id?: string;
|
|
208488
208915
|
value?: string;
|
|
@@ -208499,6 +208926,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208499
208926
|
career_type?: number;
|
|
208500
208927
|
customized_data?: Array<{
|
|
208501
208928
|
object_id?: string;
|
|
208929
|
+
value?: string;
|
|
208502
208930
|
children?: Array<{
|
|
208503
208931
|
object_id?: string;
|
|
208504
208932
|
value?: string;
|
|
@@ -208515,6 +208943,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208515
208943
|
end_time?: string;
|
|
208516
208944
|
customized_data?: Array<{
|
|
208517
208945
|
object_id?: string;
|
|
208946
|
+
value?: string;
|
|
208518
208947
|
children?: Array<{
|
|
208519
208948
|
object_id?: string;
|
|
208520
208949
|
value?: string;
|
|
@@ -208528,6 +208957,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208528
208957
|
attachment_id?: string;
|
|
208529
208958
|
customized_data?: Array<{
|
|
208530
208959
|
object_id?: string;
|
|
208960
|
+
value?: string;
|
|
208531
208961
|
children?: Array<{
|
|
208532
208962
|
object_id?: string;
|
|
208533
208963
|
value?: string;
|
|
@@ -208541,6 +208971,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208541
208971
|
desc?: string;
|
|
208542
208972
|
customized_data?: Array<{
|
|
208543
208973
|
object_id?: string;
|
|
208974
|
+
value?: string;
|
|
208544
208975
|
children?: Array<{
|
|
208545
208976
|
object_id?: string;
|
|
208546
208977
|
value?: string;
|
|
@@ -208553,6 +208984,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208553
208984
|
proficiency?: number;
|
|
208554
208985
|
customized_data?: Array<{
|
|
208555
208986
|
object_id?: string;
|
|
208987
|
+
value?: string;
|
|
208556
208988
|
children?: Array<{
|
|
208557
208989
|
object_id?: string;
|
|
208558
208990
|
value?: string;
|
|
@@ -208565,6 +208997,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208565
208997
|
link?: string;
|
|
208566
208998
|
customized_data?: Array<{
|
|
208567
208999
|
object_id?: string;
|
|
209000
|
+
value?: string;
|
|
208568
209001
|
children?: Array<{
|
|
208569
209002
|
object_id?: string;
|
|
208570
209003
|
value?: string;
|
|
@@ -208577,6 +209010,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208577
209010
|
content?: string;
|
|
208578
209011
|
customized_data?: Array<{
|
|
208579
209012
|
object_id?: string;
|
|
209013
|
+
value?: string;
|
|
208580
209014
|
children?: Array<{
|
|
208581
209015
|
object_id?: string;
|
|
208582
209016
|
value?: string;
|
|
@@ -208585,6 +209019,7 @@ declare abstract class Client$u extends Client$v {
|
|
|
208585
209019
|
};
|
|
208586
209020
|
customized_data?: Array<{
|
|
208587
209021
|
object_id?: string;
|
|
209022
|
+
value?: string;
|
|
208588
209023
|
children?: Array<{
|
|
208589
209024
|
object_id?: string;
|
|
208590
209025
|
value?: string;
|
|
@@ -213390,7 +213825,7 @@ declare abstract class Client$s extends Client$t {
|
|
|
213390
213825
|
}>;
|
|
213391
213826
|
};
|
|
213392
213827
|
/**
|
|
213393
|
-
*
|
|
213828
|
+
* 消息加急
|
|
213394
213829
|
*/
|
|
213395
213830
|
message: {
|
|
213396
213831
|
/**
|
|
@@ -216038,7 +216473,7 @@ declare abstract class Client$s extends Client$t {
|
|
|
216038
216473
|
}>;
|
|
216039
216474
|
};
|
|
216040
216475
|
/**
|
|
216041
|
-
*
|
|
216476
|
+
* 消息加急
|
|
216042
216477
|
*/
|
|
216043
216478
|
message: {
|
|
216044
216479
|
/**
|
|
@@ -226851,7 +227286,7 @@ declare abstract class Client$c extends Client$d {
|
|
|
226851
227286
|
}>;
|
|
226852
227287
|
};
|
|
226853
227288
|
/**
|
|
226854
|
-
*
|
|
227289
|
+
* 工作表
|
|
226855
227290
|
*/
|
|
226856
227291
|
spreadsheetSheet: {
|
|
226857
227292
|
/**
|
|
@@ -227690,7 +228125,7 @@ declare abstract class Client$c extends Client$d {
|
|
|
227690
228125
|
}>;
|
|
227691
228126
|
};
|
|
227692
228127
|
/**
|
|
227693
|
-
*
|
|
228128
|
+
* 工作表
|
|
227694
228129
|
*/
|
|
227695
228130
|
spreadsheetSheet: {
|
|
227696
228131
|
/**
|
|
@@ -242527,7 +242962,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
242527
242962
|
scope: string;
|
|
242528
242963
|
description?: string;
|
|
242529
242964
|
level?: number;
|
|
242530
|
-
token_types?: Array<
|
|
242965
|
+
token_types?: Array<"tenant" | "user">;
|
|
242531
242966
|
}>;
|
|
242532
242967
|
back_home_url?: string;
|
|
242533
242968
|
i18n?: Array<{
|
|
@@ -242641,7 +243076,7 @@ interface IHandles extends IOtherEventHandles {
|
|
|
242641
243076
|
scope: string;
|
|
242642
243077
|
description?: string;
|
|
242643
243078
|
level?: number;
|
|
242644
|
-
token_types?: Array<
|
|
243079
|
+
token_types?: Array<"tenant" | "user">;
|
|
242645
243080
|
}>;
|
|
242646
243081
|
back_home_url?: string;
|
|
242647
243082
|
i18n?: Array<{
|
|
@@ -244715,6 +245150,37 @@ interface IHandles extends IOtherEventHandles {
|
|
|
244715
245150
|
cost_center_id?: string;
|
|
244716
245151
|
field_changes?: Array<string>;
|
|
244717
245152
|
}) => Promise<any> | any;
|
|
245153
|
+
/**
|
|
245154
|
+
|
|
245155
|
+
*/
|
|
245156
|
+
"corehr.department.created_v2"?: (data: {
|
|
245157
|
+
event_id?: string;
|
|
245158
|
+
token?: string;
|
|
245159
|
+
create_time?: string;
|
|
245160
|
+
event_type?: string;
|
|
245161
|
+
tenant_key?: string;
|
|
245162
|
+
ts?: string;
|
|
245163
|
+
uuid?: string;
|
|
245164
|
+
type?: string;
|
|
245165
|
+
app_id?: string;
|
|
245166
|
+
department_id?: string;
|
|
245167
|
+
}) => Promise<any> | any;
|
|
245168
|
+
/**
|
|
245169
|
+
|
|
245170
|
+
*/
|
|
245171
|
+
"corehr.department.updated_v2"?: (data: {
|
|
245172
|
+
event_id?: string;
|
|
245173
|
+
token?: string;
|
|
245174
|
+
create_time?: string;
|
|
245175
|
+
event_type?: string;
|
|
245176
|
+
tenant_key?: string;
|
|
245177
|
+
ts?: string;
|
|
245178
|
+
uuid?: string;
|
|
245179
|
+
type?: string;
|
|
245180
|
+
app_id?: string;
|
|
245181
|
+
department_id?: string;
|
|
245182
|
+
field_changes?: Array<string>;
|
|
245183
|
+
}) => Promise<any> | any;
|
|
244718
245184
|
/**
|
|
244719
245185
|
|
|
244720
245186
|
*/
|
|
@@ -246795,50 +247261,6 @@ interface IHandles extends IOtherEventHandles {
|
|
|
246795
247261
|
id?: string;
|
|
246796
247262
|
post_id?: string;
|
|
246797
247263
|
}) => 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
247264
|
/**
|
|
246843
247265
|
|
|
246844
247266
|
*/
|